【Nginx】server 代码块的配置

本地配置

server {
       listen       7070;
       server_name  localhost;

       location / {
          root D:/workspace/...;
	      try_files $uri $uri/ /index.html;
	      index  index.html index.htm;

       }

       location /api { 
           proxy_pass http://localhost:8080/api;
       }
}

线上配置

server
{
    listen 80;
    server_name team-pan.top;
    index index.php index.html index.htm default.php default.htm default.html;
    root /www/wwwroot/team-pan.top/dist;
    
    #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
    #error_page 404/404.html;
    #SSL-END
    
    #ERROR-PAGE-START  错误页配置,可以注释、删除或修改
    #error_page 404 /404.html;
    #error_page 502 /502.html;
    #ERROR-PAGE-END
    
    #PHP-INFO-START  PHP引用配置,可以注释或修改
    include enable-php-00.conf;
    #PHP-INFO-END
    
    #REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
    include /www/server/panel/vhost/rewrite/team-pan.top.conf;
    #REWRITE-END
    
    # 可以直接访问到 team-pan.top/login
    location / {
       root /www/wwwroot/team-pan.top/dist;
       try_files $uri $uri/ /index.html;
       index  index.html index.htm;
    }
    
    # proxy_pass http://127.0.0.1:8123的后面不要有“/”,此时反向代理的路径是:http://127.0.0.1:8123/api/...
    location /api/ {
        proxy_pass http://127.0.0.1:8123;
    }
    
    #禁止访问的文件或目录
    location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
    {
        return 404;
    }
    
    #一键申请SSL证书验证目录相关设置
    location ~ \.well-known{
        allow all;
    }
    
    # 注释掉 不然无法访问图片
    # location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    # {
    #     expires      30d;
    #     error_log /dev/null;
    #     access_log off;
    # }
    
    location ~ .*\.(js|css)?$
    {
        expires      12h;
        error_log /dev/null;
        access_log off; 
    }
    access_log  /www/wwwlogs/team-pan.top.log;
    error_log  /www/wwwlogs/team-pan.top.error.log;
}

你可能感兴趣的:(前端,nginx,运维)