Add 'scripts/grav/main.py'
parent
78f39deb57
commit
2004d11598
|
@ -0,0 +1,11 @@
|
|||
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.2.1:80/")
|
||||
|
||||
with open("/etc/nginx/sites-available/grav.conf", "w") as f:
|
||||
f.write(template)
|
||||
|
||||
# depreceated, TODO: replace with os.subprocess
|
||||
os.system("sh ../nginx-ensite.sh grav.conf")
|
||||
os.system("sh launch-docker.sh")
|
Loading…
Reference in New Issue