nginx绑定多个端口
生活随笔
收集整理的這篇文章主要介紹了
nginx绑定多个端口
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
有兩種方法:
一、在server段寫上2個Listen就可以了.
listen 192.168.0.15:808; listen 192.168.0.15:8098;如上,就可以同時監聽2個端口了.
二、在 nginx.conf 中配置多個個server即可
worker_processes 1;events {worker_connections 1024; }http {include mime.types;default_type application/octet-stream;sendfile on;keepalive_timeout 65;server {listen 80;server_name localhost;location / {root /app/dist;try_files $uri $uri/ /index.html;index index.html index.htm;}location /api/{proxy_set_header Host $http_host;proxy_set_header X-Real-IP $remote_addr;proxy_set_header REMOTE-HOST $remote_addr;proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;proxy_pass http://localhost:8080/;}error_page 500 502 503 504 /50x.html;location = /50x.html {root html;}}server {listen 8080;server_name localhost;location / {root /app/dist;try_files $uri $uri/ /index.html;index index.html index.htm;}location /api/{proxy_set_header Host $http_host;proxy_set_header X-Real-IP $remote_addr;proxy_set_header REMOTE-HOST $remote_addr;proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;proxy_pass http://localhost:8088/;}error_page 500 502 503 504 /50x.html;location = /50x.html {root html;}} }總結
以上是生活随笔為你收集整理的nginx绑定多个端口的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: springboot elasticse
- 下一篇: Nacos配置中心规范