fix jam tor nginx conf (#4373)

This commit is contained in:
openoms 2024-01-17 21:13:58 +01:00 committed by GitHub
parent 0a215c2476
commit 9afa8101b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 4 deletions

View file

@ -2,7 +2,7 @@
server {
listen 7502;
listen [::1]:7502;
listen [::]:7502;
server_name _;
access_log /var/log/nginx/access_jam.log;
@ -12,7 +12,6 @@ server {
gzip_vary on;
gzip_proxied any;
gzip_types *;
gzip_types application/javascript application/json text/css image/svg+xml;
root /home/jam/webui/build;
index index.html;

View file

@ -2,7 +2,7 @@
server {
listen 7503 ssl http2;
listen [::1]:7503 ssl http2;
listen [::]:7503 ssl http2;
server_name _;
include /etc/nginx/snippets/ssl-params.conf;
@ -15,7 +15,6 @@ server {
gzip_vary on;
gzip_proxied any;
gzip_types *;
gzip_types application/javascript application/json text/css image/svg+xml;
root /home/jam/webui/build;
index index.html;