Files
shell-scripts/2-NGINX相关/nginx安装/端口转发模板.conf
2024-11-28 20:11:31 +08:00

5 lines
101 B
Plaintext

server {
listen ${FRONT_PROXY_PORT};
proxy_pass ${REVERSE_PROXY_IP}:${REVERSE_PROXY_PORT};
}