diff --git a/examples/behind-reverse-proxy/setup-linux.sh b/examples/behind-reverse-proxy/setup-linux.sh index 28ae19809..c4935e5f4 100755 --- a/examples/behind-reverse-proxy/setup-linux.sh +++ b/examples/behind-reverse-proxy/setup-linux.sh @@ -15,6 +15,7 @@ elif [ ! -z $APT ] ; then fi cp haproxy.cfg /etc/haproxy +sed -i "s/8080/80/" systemctl stop haproxy systemctl start haproxy diff --git a/examples/behind-reverse-proxy/variables.env b/examples/behind-reverse-proxy/variables.env index 64f7b73c7..bf34f3049 100644 --- a/examples/behind-reverse-proxy/variables.env +++ b/examples/behind-reverse-proxy/variables.env @@ -1,5 +1,3 @@ -HTTP_PORT=80 -HTTPS_PORT=443 DNS_RESOLVERS=8.8.8.8 8.8.4.4 # replace with your domains SERVER_NAME=www.example.com diff --git a/tests/LinuxTest.py b/tests/LinuxTest.py index 1b7e074fd..b6e791a80 100644 --- a/tests/LinuxTest.py +++ b/tests/LinuxTest.py @@ -59,6 +59,7 @@ class LinuxTest(Test) : proc = LinuxTest.docker_exec(distro, "chown -R nginx:nginx " + dst + "/*") if proc.returncode != 0 : raise(Exception("docker exec failed for directory " + src + " (linux stack)")) + # TODO : php install sleep(60) except : log("LINUX", "❌", "exception while running LinuxTest.init()\n" + format_exc())