本示例介绍了Nginx绑定80端口,网站打开成功。现在我想在端口8080 和8089 之间添加另一个绑定。我该怎么办?有两种方法。 1. 只需在服务器部分写入2 Listen 即可。
listen 192.168.0.123:8080;listen 192.168.0.123:8089; 如上,可以同时监听两个端口。
2.在nginx.conf中配置多台服务器
用户nginx nginx;worker_processes 1;worker_rlimit_nofile 65535;events {worker_connections 4000;}http { include mime.types;default_type application/octet-stream; autoindex off; log_format main '$remote_addr - $remote_user [$time_local] \'$request\ ' '$status $body_bytes_sent \'$http_referer\' '\'$http_user_agent\' \'$http_x_forwarded_for\'' '$upstream_addr $upstream_response_time $request_time '; access_log 日志/nginx/access.log main; sendfile on; keepalive_timeout 65 ; 上游本地主机{ 服务器127.0.0.1:80800 max_fails=7 失败超时=7s; } 服务器{ 监听8080; 服务器名称本地主机; 大客户端标头缓冲区4 128k; 客户端最大主体大小300m; 客户端主体缓冲区大小128k; 代理连接超时600; proxy_read_timeout 600; proxy_send_timeout 600; proxy_buffer_size 64k; proxy_buffers 4 32k; proxy_busy_buffers_size 64k; proxy_temp_file_write_size 64k; #设置显示Nginx状态位置的地址/nginxstatus{ stub_status on; access_log on; auth_basic \' nginxstatus\'; auth_basic_ user_file htpasswd; }# ftpweb 位置/ftpweb {indexindex.htmlindex.htm Index.jsp; proxy_pass http://192.168.0.16:9081/ftpweb; proxy_set_header 68.0.123 /zabbix/; proxy_set_header ;large_client_header_buffers 4 128k; client_max_body_size 30 0m; client_body_buff er_size 128k; proxy_connect_timeout 600; proxy_read_timeout 600; proxy_send_timeout 600 ; proxy_buffer_size 64k; _write_size 64k;#打开8089接口地址位置/interserver { Index Index.html Index.htm Index .jsp; proxy_pass http://192.168.0.20:8812/interserver/; proxy_set_header 编辑分享了这方面更多有用的事情。感兴趣的朋友请关注哦~
标题:nginx 多个conf配置,nginx可以配置多个端口
链接:https://www.52funs.com/news/sypc/9974.html
版权:文章转载自网络,如有侵权,请联系删除!