61 lines
1.8 KiB
Nginx Configuration File
61 lines
1.8 KiB
Nginx Configuration File
worker_processes 1;
|
|
error_log logs/error.log;
|
|
pid logs/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include D:/nginx/conf/mime.types;
|
|
default_type application/octet-stream;
|
|
sendfile on;
|
|
keepalive_timeout 65;
|
|
client_max_body_size 50m;
|
|
|
|
gzip on;
|
|
gzip_min_length 1024;
|
|
gzip_comp_level 6;
|
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript image/svg+xml;
|
|
gzip_vary on;
|
|
|
|
server {
|
|
listen 80;
|
|
server_name 10.1.1.157 localhost 127.0.0.1;
|
|
charset utf-8;
|
|
|
|
root D:/IDE-WorkSpace/New-JW/frontend/dist;
|
|
index index.html;
|
|
|
|
location /prod-api/ {
|
|
proxy_set_header Host $http_host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
proxy_connect_timeout 30s;
|
|
proxy_read_timeout 300s;
|
|
proxy_pass http://127.0.0.1:8080/api/;
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_set_header Host $http_host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
proxy_connect_timeout 30s;
|
|
proxy_read_timeout 300s;
|
|
proxy_pass http://127.0.0.1:8080/api/;
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|
|
}
|