Update 'scripts/wallabag/main.py'

pull/4/head
drunkendog 2022-09-22 19:54:48 +01:00
parent ff34357aaf
commit 22afb2b63d
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
import os, sys import os, sys
with open("../nginx-site-template.conf", "r") as f: 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.1.1:80/") template = f.read().replace("#serverNameVar", f"{sys.argv[1]}").replace("#http://127.0.0.1:8080/", f"http://172.30.1.1:80/")
with open("/etc/nginx/sites-available/wallabag.conf", "w") as f: with open("/etc/nginx/sites-available/wallabag.conf", "w") as f:
f.write(template) f.write(template)
# depreceated, TODO: replace with os.subprocess # depreceated, TODO: replace with os.subprocess
os.system("sh ../nginx-ensite.sh wallabag.conf") os.system("sh ../nginx-ensite.sh wallabag")
os.system("sh launch-docker.sh") os.system("sh launch-docker.sh")