-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhosted-node-nginx-conf.conf
More file actions
180 lines (155 loc) · 5.77 KB
/
hosted-node-nginx-conf.conf
File metadata and controls
180 lines (155 loc) · 5.77 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
server {
listen 80 default_server;
server_name _;
return 301 https://$host$request_uri;
}
map $scheme $ws_scheme {
default "ws";
https "wss";
}
# ===== api.qortal.org =====
server {
listen 443 ssl;
server_name api.qortal.org;
ssl_certificate /home/crowetic/certs/cloudflarecertqortal.org.pem;
ssl_certificate_key /home/crowetic/certs/cloudflarecertqortal.org.key;
ssl_prefer_server_ciphers on;
client_max_body_size 500M;
# Block POST/DELETE to sensitive endpoints
location ~* ^/(lists|admin/(restart|stop|forcesync|apikey/generate|enginestats|orphan|mintingaccounts)|arbitrary/resources/cache/rebuild)$ {
if ($request_method ~* ^(POST|DELETE)$) {
access_log /var/log/nginx/forbidden-methods.log;
return 403;
}
}
# Fully deny dangerous paths
location ~* ^/(admin/repository/|admin/logs|admin/bootstrap|arbitrary/hosted|crosschain/tradebot|bootstrap/create)$ {
deny all;
error_log /var/log/nginx/forbidden.log debug;
}
location / {
proxy_pass http://127.0.0.1:12391;
proxy_set_header Host $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_read_timeout 3600s;
proxy_send_timeout 3600s;
send_timeout 3600s;
keepalive_timeout 3600s;
proxy_request_buffering off;
proxy_buffering off;
proxy_http_version 1.1;
proxy_set_header Connection "";
}
location /websockets/ {
proxy_pass http://127.0.0.1:12391/websockets/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
location /websockets/crosschain/ {
proxy_pass $ws_scheme://127.0.0.1:12391/websockets/crosschain/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
}
# ===== api1.qortal.org =====
server {
listen 443 ssl;
server_name api1.qortal.org;
ssl_certificate /home/crowetic/certs/cloudflarecert2.api.qortal.org.pem;
ssl_certificate_key /home/crowetic/certs/cloudflarecert2.api.qortal.org.key;
ssl_prefer_server_ciphers on;
client_max_body_size 500M;
location ~* ^/(lists|admin/(restart|stop|forcesync|apikey/generate|enginestats|orphan|mintingaccounts)|arbitrary/resources/cache/rebuild)$ {
if ($request_method ~* ^(POST|DELETE)$) {
access_log /var/log/nginx/forbidden-methods.log;
return 403;
}
}
location ~* ^/(admin/repository/|admin/logs|admin/bootstrap|arbitrary/hosted|crosschain/tradebot|bootstrap/create)$ {
deny all;
error_log /var/log/nginx/forbidden.log debug;
}
location / {
proxy_pass http://127.0.0.1:12391;
proxy_set_header Host $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_read_timeout 3600s;
proxy_send_timeout 3600s;
send_timeout 3600s;
keepalive_timeout 3600s;
proxy_request_buffering off;
proxy_buffering off;
proxy_http_version 1.1;
proxy_set_header Connection "";
}
location /websockets/ {
proxy_pass http://127.0.0.1:12391/websockets/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
location /websockets/crosschain/ {
proxy_pass $ws_scheme://127.0.0.1:12391/websockets/crosschain/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
}
# ===== pubnode.qortal.org =====
server {
listen 443 ssl;
server_name pubnode.qortal.org;
ssl_certificate /etc/letsencrypt/live/pubnode.qortal.org/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/pubnode.qortal.org/privkey.pem;
ssl_prefer_server_ciphers on;
client_max_body_size 500M;
location ~* ^/(lists|admin/(restart|stop|forcesync|apikey/generate|enginestats|orphan|mintingaccounts)|arbitrary/resources/cache/rebuild)$ {
if ($request_method ~* ^(POST|DELETE)$) {
access_log /var/log/nginx/forbidden-methods.log;
return 403;
}
}
location ~* ^/(admin/repository/|admin/logs|admin/bootstrap|arbitrary/hosted|crosschain/tradebot|bootstrap/create)$ {
deny all;
error_log /var/log/nginx/forbidden.log debug;
}
location / {
proxy_pass http://127.0.0.1:12391;
proxy_set_header Host $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_read_timeout 3600s;
proxy_send_timeout 3600s;
send_timeout 3600s;
keepalive_timeout 3600s;
proxy_request_buffering off;
proxy_buffering off;
proxy_http_version 1.1;
proxy_set_header Connection "";
}
location /websockets/ {
proxy_pass http://127.0.0.1:12391/websockets/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
location /websockets/crosschain/ {
proxy_pass $ws_scheme://127.0.0.1:12391/websockets/crosschain/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
}