Installs Mainsail, but buggy

This commit is contained in:
2024-08-06 13:48:45 -04:00
parent 475bc5df15
commit df8fdc37cc
10 changed files with 381 additions and 53 deletions
+14
View File
@@ -0,0 +1,14 @@
# location ~ ^/PRINTERNAMELC/(.*) {
# proxy_pass http://127.0.0.1:PORT/$1;
# proxy_http_version 1.1;
# proxy_set_header Upgrade $http_upgrade;
# proxy_set_header Connection $connection_upgrade;
# proxy_set_header Host $host;
# proxy_buffering off;
# proxy_read_timeout 10800s;
# proxy_send_timeout 10800s;
# proxy_connect_timeout 30s;
# }
location ~ ^/PRINTERNAMELC/(.*) {
return 301 $scheme://$host:PORT/$1;
}