Rename nginx/server to nginx_server

This commit is contained in:
Timo Makinen 2023-10-13 16:17:07 +00:00
parent 39fad6ed05
commit 15c612cb3b
14 changed files with 38 additions and 38 deletions

View file

@ -1,19 +0,0 @@
ssl_client_certificate {{ tls_certs }}/ca.crt;
ssl_verify_client on;
{% for host in ssh_proxy_hosts %}
location /{{ host | hash('sha1') }}/ {
proxy_pass http://127.0.0.1:6000?token={{ host | hash('sha1') }};
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
proxy_read_timeout 600s;
proxy_buffering off;
}
{% endfor %}
location / {
deny all;
}