0
点赞
收藏
分享

微信扫一扫

nginx绑定多个端口

minute_5 2022-09-05 阅读 88


有两种方法:

一、在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;
}
}
}


举报

相关推荐

0 条评论