http{ server { listen 80; server_name asac.xxxx.com; #访问的域名 OctAfterSaleAccCusSystemWeb_Publish location / { proxy_pass http://127.0.0.1:8005; #请求转发地址 proxy_set_header Host $host; } } server { listen 80; server_name cc.xxxx.com; #访问的域名 OctCommonCodeSystemWeb_Publish location / { proxy_pass http://127.0.0.1:8000; #请求转发地址 proxy_set_header Host $host; } } server { listen 80; server_name oad.xxxx.com; #访问的域名 OctAdvertiserSystemWeb_Publish location / { proxy_pass http://127.0.0.1:8004; #请求转发地址 proxy_set_header Host $host; } } server { listen 80; server_name tra.xxxx.com; #访问的域名 OctTradingSystemWeb_Publish location / { proxy_pass http://127.0.0.1:8002; #请求转发地址 proxy_set_header Host $host; } } server { listen 80; server_name ugs.xxxx.com; #访问的域名 OctUserGoodsShopSystemWeb_Publish location / { proxy_pass http://127.0.0.1:8001; #请求转发地址 proxy_set_header Host $host; } } server { listen 80; server_name maw.xxxx.com; #访问的域名 OctMallAppWeb_Publish location / { proxy_pass http://127.0.0.1:8011; #请求转发地址 proxy_set_header Host $host; } } server { listen 80; server_name shop.xxxx.com; #访问的域名 OctShopSystemWeb_Publish location / { proxy_pass http://127.0.0.1:8008; #请求转发地址 proxy_set_header Host $host; } } server { listen 80; server_name cms.xxxx.com; #访问的域名 OctCmsSystemWeb_Publish location / { proxy_pass http://127.0.0.1:8009; #请求转发地址 proxy_set_header Host $host; } } server{ ssl on; ssl_certificate /home/ithuang/website/nginxhttpscert/h5opencodetiger.pem; #证书路径 ssl_certificate_key /home/ithuang/website/nginxhttpscert/h5opencodetiger.key; #私钥路径 ssl_session_timeout 5m; ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3; ssl_prefer_server_ciphers on; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; listen 443; server_name h5.xxxx.com; #访问的域名 OctWapWeb_Publish location / { proxy_pass http://127.0.0.1:8007;#请求转发地址 proxy_set_header Host $host; } } server{ ssl on; ssl_certificate /home/ithuang/website/nginxhttpscert/h5opencodetiger.pem; #证书路径 ssl_certificate_key /home/ithuang/website/nginxhttpscert/h5opencodetiger.key; #私钥路径 ssl_session_timeout 5m; ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3; ssl_prefer_server_ciphers on; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; listen 443; server_name tac.xxxx.com; #访问的域名 OctThirdApiCallSystemWeb_Publish location / { proxy_pass http://127.0.0.1:8003;#请求转发地址 proxy_set_header Host $host; } } server{ ssl on; ssl_certificate /home/ithuang/website/nginxhttpscert/h5opencodetiger.pem; #证书路径 ssl_certificate_key /home/ithuang/website/nginxhttpscert/h5opencodetiger.key; #私钥路径 ssl_session_timeout 5m; ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3; ssl_prefer_server_ciphers on; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; listen 443; server_name mini.xxxx.com; #访问的域名 OctMallMiniWeb_Publish location / { proxy_pass http://127.0.0.1:8010;#请求转发地址 proxy_set_header Host $host; } } server{ ssl on; ssl_certificate /home/ithuang/website/nginxhttpscert/h5opencodetiger.pem; #证书路径 ssl_certificate_key /home/ithuang/website/nginxhttpscert/h5opencodetiger.key; #私钥路径 ssl_session_timeout 5m; ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3; ssl_prefer_server_ciphers on; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; listen 443; server_name fu.xxxx.com; #访问的域名 OctFileUploadSystemWeb_Publish location / { proxy_pass http://127.0.0.1:8006;#请求转发地址 proxy_set_header Host $host; } } }