1
0
Fork 0
mirror of https://git.sr.ht/~rjarry/aerc synced 2025-02-23 07:53:59 +01:00
aerc/contrib/ircbot/nginx.conf
Robin Jarry b5e0c45ce3 ircbot: use tabs for nginx config
Who indents nginx config files with 8 spaces?

Signed-off-by: Robin Jarry <robin@jarry.cc>
Tested-by: Bence Ferdinandy <bence@ferdinandy.com>
2024-06-28 23:33:12 +02:00

35 lines
881 B
Nginx Configuration File

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 46.23.81.128/25;
allow 2a03:6000:1813::/48;
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;
}