This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx.conf
82 lines (68 loc) · 2.33 KB
/
nginx.conf
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
limit_req_zone $binary_remote_addr zone=apilimit:10m rate=10r/s;
proxy_cache_path /var/cache/nginx keys_zone=cachezone:10m max_size=1G;
server {
server_name produpedia.org www.produpedia.org;
location / {
proxy_pass http://localhost:8080;
}
location ^~ /static {
root /var/www/produpedia.org/html/;
#expires -1;
}
access_log off;
proxy_cache cachezone;
proxy_cache_valid any 48h;
listen [::]:443 ssl ipv6only=on; # managed by Certbot
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/produpedia.org/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/produpedia.org/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
server_name api.produpedia.org;
limit_req zone=apilimit burst=4 nodelay;
limit_req_status 429;
# Seems to be the only way to disable limit_req logging
error_log /dev/null;
proxy_cache cachezone;
proxy_cache_valid any 48h;
# gzip off;
location / {
proxy_pass http://localhost:7070;
# TODO: doesnt work idk why
error_page 404 /error/index.html;
}
# ??? This breaks the /error router
# location /error {
# root /var/www/api.produpedia.org/html;
# }
access_log off;
listen [::]:443 ssl; # managed by Certbot
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/api.produpedia.org/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/api.produpedia.org/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
if ($host = www.produpedia.org) {
return 301 https://$host$request_uri;
} # managed by Certbot
if ($host = produpedia.org) {
return 301 https://$host$request_uri;
} # managed by Certbot
listen 80 default_server;
listen [::]:80 default_server;
server_name produpedia.org www.produpedia.org;
return 404; # managed by Certbot
}
server {
if ($host = api.produpedia.org) {
return 301 https://$host$request_uri;
} # managed by Certbot
listen 80;
listen [::]:80;
server_name api.produpedia.org;
return 404; # managed by Certbot
}