blob: 97e50270f6cdf31f93cc990ca8179a07509bfc15 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
server {
listen 80;
server_name domain_goes_here;
location / {
return 301 https://$host$request_uri;
}
}
server {
listen 443 ssl http2;
root wwwpath_goes_here;
server_name domain_goes_here;
ssl_certificate /etc/letsencrypt/live/domain_goes_here/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/domain_goes_here/privkey.pem;
error_log /var/log/gpigeon.log;
index index.html index.htm;
location = /cgi-bin/gpigeon.cgi {
ssi off;
gzip off;
fastcgi_pass unix:/run/fcgiwrap.sock;
include /etc/nginx/fastcgi_params;
}
location ~ ^/cgi-bin/l/(.*).cgi$ {
ssi off;
gzip off;
fastcgi_pass unix:/run/fcgiwrap.sock;
include /etc/nginx/fastcgi_params;
}
}
|