摘要:
upstream abc.com{ server 192.168.66.121;#域名无效,负载均衡实质是内网发挥作用,用域名就走外网了,没意义 server 192.168.66.122; } server { listen 8005; server_name 192.168.6.120:8005; log_not... 阅读全文
摘要:
server { listen 192.168.66.88:8005; server_name 192.168.66.88:8005; root E:/Upays/public/; index index.php index.html; log_not_found off; access_log logs/upay-access.log; ... 阅读全文
摘要:
修改http.conf监听多个端口 Listen 80 Listen 8001 Listen 8002 配置站点 <VirtualHost *:8001> ServerName *:8001 ServerAdmin webmaster@localhost DocumentRoot /var/www/ 阅读全文