* Proxy changes now use a real tld of .net

This is to make browser behave better as they would always try to
avoid the domain lookup
This commit is contained in:
2022-04-30 21:57:00 -07:00
parent 02a47b8418
commit f4b24be904
9 changed files with 41 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
server {
server_name {{SERVER_NAME}};
location / {
proxy_pass http://127.0.0.1:{{PORT}};
}
}