服务端 Nginx 部署

server {

	server_name www.nanoparticles.cn;
	gzip on;
    	gzip_min_length 1k;
    	gzip_comp_level 9;
    	gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
    	gzip_vary on;
    	gzip_disable "MSIE [1-6]\.";
	root /var/www/personal/ReactBlock/dist;
	location / {
		try_files $uri $uri/ /index.html;
	}	
	location /api {
      	proxy_pass http://localhost:8080;
      	proxy_set_header   X-Forwarded-Proto $scheme;
      	proxy_set_header   Host              $http_host;
      	proxy_set_header   X-Real-IP         $remote_addr;
  	}

        error_page 404 /404.html;
	location = /40x.html {
       	}

        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
        }
}

Last updated