lago/extra/nginx-letsencrypt.conf
Jérémy Denquin 7e2d2cd944
misc: add ssl support (#75)
* misc: add SSL support for docker config

* add extra files

* feat: Add support for LAGO_DISABLE_SIGNUP env var (#73)

* chore: remove .DS_Store file

* misc: add SSL support for docker config

* fix rebase issue

* fix review

Co-authored-by: Vincent Pochet <vincent@getlago.com>
2022-07-26 11:52:08 +02:00

30 lines
650 B
Plaintext

server {
listen 80;
server_name lago.example;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
return 301 https://$host$request_uri;
}
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
}
server {
listen 443 ssl;
server_name lago.example;
location / {
proxy_pass http://lago.example;
}
ssl_certificate /etc/letsencrypt/live/lago.example/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/lago.example/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
}