下载nginx
修改nginx.conf
server {listen 80;server_name localhost;location /demo {alias E:\\temp\\vuemb\\dist\\;index index.html index.htm;}location /jpaas {# proxy_set_header Host $host;# proxy_pass http://127.0.0.1:8002;alias /home/jpaas/front/jpaas;index index.html;try_files $uri $uri/ /jpaas/index.html;}location /api/ {proxy_set_header Host $host;proxy_pass http://127.0.0.1:9900/;}location /form {# proxy_set_header Host $host;# proxy_pass http://127.0.0.1:8080;alias /home/jpaas/front/jpaas_form;index index.html;try_files $uri $uri/ /form/index.html;}location /job {proxy_set_header Host $host;proxy_pass http://127.0.0.1:7878;}location /bpm-designer {#proxy_set_header Host $host;#proxy_pass http://127.0.0.1:8087;alias /home/jpaas/front/jpaas_bpm;index index.html;try_files $uri $uri/ /jpaas/index.html;}}
文档更新时间: 2021-03-03 11:21 作者:csx