2018-08-17 09:25:59 +10:00
|
|
|
# ------------------------------------------------------------
|
2018-08-02 19:48:47 +10:00
|
|
|
# {{ incoming_port }} TCP: {{ tcp_forwarding }} UDP: {{ udp_forwarding }}
|
2018-08-17 09:25:59 +10:00
|
|
|
# ------------------------------------------------------------
|
2018-08-02 19:48:47 +10:00
|
|
|
|
2019-01-03 21:04:11 +10:00
|
|
|
{% if enabled %}
|
2018-08-02 19:48:47 +10:00
|
|
|
{% if tcp_forwarding == 1 or tcp_forwarding == true -%}
|
2018-08-01 21:18:17 +10:00
|
|
|
server {
|
2018-08-17 09:25:59 +10:00
|
|
|
listen {{ incoming_port }};
|
|
|
|
proxy_pass {{ forward_ip }}:{{ forwarding_port }};
|
2019-08-08 21:19:42 -04:00
|
|
|
|
|
|
|
# Custom
|
|
|
|
include /data/nginx/custom/server_stream[.]conf;
|
|
|
|
include /data/nginx/custom/server_stream_tcp[.]conf;
|
2018-08-01 21:18:17 +10:00
|
|
|
}
|
2018-08-02 19:48:47 +10:00
|
|
|
{% endif %}
|
|
|
|
{% if udp_forwarding == 1 or udp_forwarding == true %}
|
|
|
|
server {
|
2018-08-17 09:25:59 +10:00
|
|
|
listen {{ incoming_port }} udp;
|
|
|
|
proxy_pass {{ forward_ip }}:{{ forwarding_port }};
|
2019-08-08 21:19:42 -04:00
|
|
|
|
|
|
|
# Custom
|
|
|
|
include /data/nginx/custom/server_stream[.]conf;
|
|
|
|
include /data/nginx/custom/server_stream_udp[.]conf;
|
2018-08-02 19:48:47 +10:00
|
|
|
}
|
|
|
|
{% endif %}
|
2019-01-03 21:04:11 +10:00
|
|
|
{% endif %}
|