Init commit with all nginx files on api server

This commit is contained in:
2019-07-29 13:55:49 +02:00
parent 7078e35581
commit 7e3cd26ddf
23 changed files with 1017 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
server {
listen 443;
server_name chatbot.kevinmidboe.com;
location / {
proxy_pass http://localhost:31458;
}
ssl_certificate /etc/letsencrypt/live/chatbot.kevinmidboe.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/chatbot.kevinmidboe.com/privkey.pem; # managed by Certbot
}