修改/conf/nginx.conf配置文件
server {
listen *:; # Listen for incoming connections from any interface on port
server_name ""; # Don't worry if "Host" HTTP Header is empty or not set
#root /usr/share/nginx/html; # serve static files from here
#include /etc/nginx/mime.types; # Send appropriate MIME types
location / {
try_files $uri /index.html;
root ProjectName;
}
}