mirror of
https://github.com/getlago/lago.git
synced 2025-01-09 06:36:41 +07:00
30 lines
650 B
Plaintext
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;
|
||
|
}
|