mirror of
https://github.com/KevinMidboe/nginx.git
synced 2025-10-29 17:50:26 +00:00
14 lines
339 B
Plaintext
14 lines
339 B
Plaintext
|
|
server {
|
|
listen 443 ssl http2;
|
|
server_name jelly.schleppe.cloud;
|
|
|
|
location / {
|
|
proxy_pass http://jelly.schleppe:8096;
|
|
}
|
|
|
|
ssl_certificate /etc/letsencrypt/live/jelly.schleppe.cloud/fullchain.pem; # managed by Certbot
|
|
ssl_certificate_key /etc/letsencrypt/live/jelly.schleppe.cloud/privkey.pem; # managed by Certbot
|
|
}
|
|
|