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;
        }
      }

 

posted on 2019-01-03 14:01  技术高超  阅读(2010)  评论(0编辑  收藏  举报