mirror of
https://github.com/himool/HimoolERP.git
synced 2024-11-15 11:58:42 +08:00
23 lines
No EOL
481 B
Nginx Configuration File
23 lines
No EOL
481 B
Nginx Configuration File
server {
|
|
listen 12222;
|
|
charset utf-8;
|
|
gzip_static on;
|
|
|
|
location / {
|
|
root /home/oms/frontend/dist/;
|
|
index index.html index.html;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_pass http://localhost:12223/api/;
|
|
proxy_set_header Host $http_host;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
}
|
|
|
|
location /media/ {
|
|
proxy_pass http://localhost:12223/media/;
|
|
proxy_set_header Host $http_host;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
}
|
|
} |