- switch to using single ssl cert for all domains

This commit is contained in:
2017-10-06 06:24:04 -04:00
parent 9988549d59
commit 2287ce73a5
14 changed files with 86 additions and 55 deletions

View File

@@ -0,0 +1,13 @@
# proxy for unsecured traffic for letsencrypt verification
server {
listen 80 default_server;
server_name _
client_max_body_size 200m;
location / {
proxy_set_header Connection $http_connection;
proxy_pass http://dkhost.xai-corp.net:83;
}
}