|
@@ -0,0 +1,73 @@
|
|
|
+server
|
|
|
+{
|
|
|
+ listen 80;
|
|
|
+ server_name oms.adwebcloud.com;
|
|
|
+ index index.html index.htm default.htm default.html;
|
|
|
+ root /home/centos/okki-oms/jeecgboot-vue3/dist;
|
|
|
+
|
|
|
+ #SSL-START SSL相关配置
|
|
|
+ #error_page 404/404.html;
|
|
|
+
|
|
|
+ #SSL-END
|
|
|
+
|
|
|
+ #ERROR-PAGE-START 错误页相关配置
|
|
|
+ #error_page 404 /404.html;
|
|
|
+ #error_page 502 /502.html;
|
|
|
+ #ERROR-PAGE-END
|
|
|
+
|
|
|
+
|
|
|
+ #REWRITE-START 伪静态相关配置
|
|
|
+ #include /www/server/panel/vhost/rewrite/java_JavaWeb_AntdVue_jar.conf;
|
|
|
+ # 请将伪静态规则或自定义NGINX配置填写到此处
|
|
|
+ location / {
|
|
|
+ try_files $uri $uri/ /index.html;
|
|
|
+ }
|
|
|
+ #REWRITE-END
|
|
|
+
|
|
|
+ #禁止访问的文件或目录
|
|
|
+ location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md|package.json|package-lock.json|\.env) {
|
|
|
+ return 404;
|
|
|
+ }
|
|
|
+
|
|
|
+ #一键申请SSL证书验证目录相关设置
|
|
|
+ location /.well-known/ {
|
|
|
+ root /www/wwwroot/java_node_ssl;
|
|
|
+ }
|
|
|
+
|
|
|
+ #禁止在证书验证目录放入敏感文件
|
|
|
+ if ( $uri ~ "^/\.well-known/.*\.(php|jsp|py|js|css|lua|ts|go|zip|tar\.gz|rar|7z|sql|bak)$" ) {
|
|
|
+ return 403;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ # HTTP反向代理相关配置开始 >>>
|
|
|
+ #location ~ /purge(/.*) {
|
|
|
+ # proxy_cache_purge cache_one $Host$request_uri$is_args$args;
|
|
|
+ #}
|
|
|
+
|
|
|
+
|
|
|
+ location ~ /shop-api/ {
|
|
|
+ proxy_pass http://oms.adwebcloud.com:8088;
|
|
|
+ }
|
|
|
+
|
|
|
+ location http://oms.adwebcloud.com:8088 {
|
|
|
+ proxy_pass http://oms.adwebcloud.com;
|
|
|
+ proxy_set_header Host $Host:$server_port;
|
|
|
+ proxy_set_header X-Real-IP $remote_addr;
|
|
|
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
+ proxy_set_header REMOTE-HOST $remote_addr;
|
|
|
+ add_header X-Cache $upstream_cache_status;
|
|
|
+ proxy_set_header X-Host $host:$server_port;
|
|
|
+ proxy_set_header X-Scheme $scheme;
|
|
|
+ proxy_connect_timeout 30s;
|
|
|
+ proxy_read_timeout 86400s;
|
|
|
+ proxy_send_timeout 30s;
|
|
|
+ proxy_http_version 1.1;
|
|
|
+ proxy_set_header Upgrade $http_upgrade;
|
|
|
+ proxy_set_header Connection "upgrade";
|
|
|
+ }
|
|
|
+ # HTTP反向代理相关配置结束 <<<
|
|
|
+
|
|
|
+ #access_log /www/wwwlogs/JavaWeb_AntdVue_jar.log;
|
|
|
+ #error_log /www/wwwlogs/JavaWeb_AntdVue_jar.error.log;
|
|
|
+}
|