Update 'scripts/code-server/main.py'

pull/4/head
drunkendog 2022-09-23 01:14:30 +01:00
parent 40289521f5
commit a14f5b6c6c
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,8 @@
import os, sys
with open("../nginx-site-template.conf", "r") as f:
template = f.read().replace("#serverNameVar", f"{sys.argv[1]}").replace("#http://127.0.0.1:8080/", f"http://172.30.3.1:8443/")
template = f.read().replace("#serverNameVar", f"{sys.argv[1]}").replace("#http://127.0.0.1:8080/", f"http://172.30.3.1:8443/") \
.replace("proxy_set_header Host $host;", "proxy_set_header Host $host;\nproxy_set_header Upgrade $http_upgrade;\nproxy_set_header Connection \"upgrade\";")
with open("/etc/nginx/sites-available/code-server.conf", "w") as f:
f.write(template)