nginx发布web网站

修改/conf/nginx.conf配置文件

server {
        listen *:80;                            # Listen for incoming connections from any interface on port 80
        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;
        }
      }
原文地址:https://www.cnblogs.com/jishugaochao/p/10213826.html