aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/ircbot/nginx.conf
blob: b68f860a7233f28d69fbcdf44f2f5a8c5696aea3 (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
35
36
limit_req_zone $binary_remote_addr zone=aercbot:1m rate=1r/s;

server {
        listen 443 ssl;
        listen [::]:443 ssl;
        server_name bot.diabeteman.com;

        ssl_certificate /etc/dehydrated/certs/diabeteman.com/fullchain.pem;
        ssl_certificate_key /etc/dehydrated/certs/diabeteman.com/privkey.pem;

        client_max_body_size 150K;
        limit_req zone=aercbot burst=10 nodelay;

        location / {
                allow 173.195.146.144;
                allow 2604:bf00:710:0:5054:ff:fec4:6bfb;
                allow 2a01:cb00:f8b:9700:84d0:c0d6:72c3:677c;
                deny all;
                proxy_http_version 1.1;
                proxy_set_header Host $http_host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header X-Forwarded-Proto $scheme;
                proxy_redirect off;
                proxy_buffering off;
                proxy_request_buffering off;
                proxy_pass http://127.0.0.1:7777;
        }
}

server {
        listen 80;
        listen [::]:80;
        server_name bot.diabeteman.com;
        return 301 https://$host$request_uri;
}