Compare commits
10 Commits
ae508f12ea
...
266c2e40c0
Author | SHA1 | Date |
---|---|---|
|
266c2e40c0 | |
|
66bae18268 | |
|
e00d30dde7 | |
|
fd4e29ca26 | |
|
93ab106211 | |
|
ea81ccda1e | |
|
5caf093eb0 | |
|
41fd2aeee5 | |
|
8ee70ee68f | |
|
3d553cb3bf |
|
@ -0,0 +1,4 @@
|
|||
location /static {
|
||||
root /var/www;
|
||||
autoindex on;
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
server {
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
server_name local2.mracs.dev;
|
||||
|
||||
location / {
|
||||
proxy_pass http://localhost:8080;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
}
|
||||
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
server {
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
server_name offsite-ejbca.mracs.dev;
|
||||
|
||||
location / {
|
||||
allow 63.141.252.133
|
||||
deny all;
|
||||
proxy_pass http://localhost:7562;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
}
|
||||
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
server {
|
||||
listen 443 ssl http2;
|
||||
server_name panel.mracs.dev;;
|
||||
server_name panel.mracs.dev;
|
||||
|
||||
root /var/www/pterodactyl/public;
|
||||
index index.php;
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
server {
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
server_name w.mracs.dev;
|
||||
|
||||
location / {
|
||||
proxy_pass http://localhost:3000;
|
||||
}
|
||||
|
||||
}
|
|
@ -37,7 +37,7 @@ http {
|
|||
##
|
||||
|
||||
ssl_protocols TLSv1.2 TLSv1.3;
|
||||
ssl_prefer_server_ciphers on;
|
||||
ssl_prefer_server_ciphers off;
|
||||
ssl_stapling on;
|
||||
ssl_certificate /etc/letsencrypt/live/mracs.dev/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/mracs.dev/privkey.pem;
|
||||
|
|
Loading…
Reference in New Issue