nginx非80埠虛擬主機
請問一下,我的nginx只能運行在非80埠
那麼我如何將網域轉送到這個非80埠上
例如下面:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <code> listen 8000;
server_name abc.test www.abc.test;
location / {
root /home/www/abc.test;
index index.html index.htm;
proxy_set_header X-Real-IP $remote_addr ;
proxy_set_header X-Forwarded-For $remote_addr ;
proxy_set_header Host $http_host ;
if ( $http_host = "www.abc.test" ) {
proxy_pass http:
}
if ( $http_host = "abc.test" ) {
proxy_pass http:
}</code>
|