mirror of
https://github.com/KevinMidboe/nginx.git
synced 2025-10-29 09:40:26 +00:00
12 lines
342 B
Plaintext
12 lines
342 B
Plaintext
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
|
|
}
|