12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- 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;
-
-
-
-
-
-
-
-
-
-
- location / {
- try_files $uri $uri/ /index.html;
- }
-
-
- location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md|package.json|package-lock.json|\.env) {
- return 404;
- }
-
- 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;
- }
-
-
-
-
- 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";
- }
-
-
-
- }
|