main route over tls
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Mauro Torrez 2019-10-12 11:16:22 -03:00
parent a628fe01ee
commit d2bc8e4e07

View File

@ -111,6 +111,7 @@ RUN \
"*:9001": { "pass": "routes/dynamic" }, \
"*:9002": { "pass": "routes/static" }, \
"*:9003": { "pass": "routes/direct" }, \
"*:9010": { "pass": "routes/main", "tls": { "certificate": "default" } }, \
"*:9011": { "pass": "routes/dynamic", "tls": { "certificate": "default" } }, \
"*:9012": { "pass": "routes/static", "tls": { "certificate": "default" } }, \
"*:9013": { "pass": "routes/direct", "tls": { "certificate": "default" } } \
@ -192,7 +193,7 @@ RUN \
rm /var/www/html/index.php /var/www/html/index.php.remove; \
}
EXPOSE 9000 9001 9002 9003 9011 9012 9013
EXPOSE 9000 9001 9002 9003 9010 9011 9012 9013
ENTRYPOINT ["/entrypoint.sh"]
STOPSIGNAL SIGTERM
CMD ["unitd", "--no-daemon", "--control", "unix:/var/run/control.unit.sock"]