25 lines
625 B
Text
25 lines
625 B
Text
server {
|
|
access_log /var/log/nginx/logs.spanix.team.log combined;
|
|
server_name logs.spanix.team;
|
|
include configs/general.conf;
|
|
include configs/security.conf;
|
|
|
|
location / {
|
|
proxy_pass http://justlogspanix;
|
|
include configs/proxy.conf;
|
|
}
|
|
|
|
listen 443 ssl;
|
|
http2 on;
|
|
ssl_certificate /etc/letsencrypt/live/logs.spanix.team/fullchain.pem; # managed by Certbot
|
|
ssl_certificate_key /etc/letsencrypt/live/logs.spanix.team/privkey.pem; # managed by Certbot
|
|
include configs/sslConfig.conf;
|
|
|
|
}
|
|
server {
|
|
if ($host = logs.spanix.team) {
|
|
return 301 https://$host$request_uri;
|
|
}
|
|
listen 80;
|
|
server_name logs.spanix.team;
|
|
}
|