/etc/nginx/conf.d/reverse_proxy.conf
ファイルを次のように作る.
server { listen 80; server_name ドメイン名1 ドメイン名2; location / { proxy_pass http://127.0.0.1:8080; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } }
|
これでドメイン名1・2へ80番で来たときに8080番にとぶ.
これをApacheで受けるため,/etc/httpd/conf/httpd.conf
で
を
に変更する.
その他,バーチャルホストのconfファイルで80番を8080番に変更する.
以上の変更を有効にするため,
systemctl httpd restart systemctl nginx restart
|
する.