nginx-routes/default.nginx.conf

19 lines
547 B
Plaintext

events {}
stream {
server {
set $nginx_proxy_source_port '';
set $nginx_proxy_source_address '';
content_by_lua_block {
ngx.var.nginx_proxy_source_port = os.getenv("$NGINX_PROXY_SOURCE_PORT");
ngx.var.nginx_proxy_source_address = os.getenv("$NGINX_PROXY_SOURCE_ADDRESS");
ngx.say(ngx.var.nginx_proxy_source_port)
ngx.say(ngx.var.nginx_proxy_source_address)
}
listen $nginx_proxy_source_port;
proxy_pass $nginx_proxy_source_address;
}
}