Compare commits

...

10 Commits

Author SHA1 Message Date
Matthew 266c2e40c0
change to subdomain 2024-12-05 10:36:22 -05:00
Matthew 66bae18268 change to subdomain 2023-04-28 20:32:12 -04:00
Matthew e00d30dde7 add wiki 2023-04-28 20:21:32 -04:00
Matthew fd4e29ca26 turn off prefer server ciphers 2023-04-28 11:21:09 -04:00
Matthew 93ab106211 add static site 2023-04-21 17:39:29 -04:00
Matthew ea81ccda1e add static site 2023-04-21 17:35:53 -04:00
Matthew 5caf093eb0 add static site 2023-04-21 17:21:06 -04:00
Matthew 41fd2aeee5 wss 2023-04-08 17:26:40 -04:00
Matthew 8ee70ee68f add new server 2023-04-08 17:11:31 -04:00
Matthew 3d553cb3bf add new server 2023-04-08 16:37:05 -04:00
6 changed files with 44 additions and 2 deletions

View File

@ -0,0 +1,4 @@
location /static {
root /var/www;
autoindex on;
}

View File

@ -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";
}
}

View File

@ -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";
}
}

View File

@ -1,6 +1,6 @@
server { server {
listen 443 ssl http2; listen 443 ssl http2;
server_name panel.mracs.dev;; server_name panel.mracs.dev;
root /var/www/pterodactyl/public; root /var/www/pterodactyl/public;
index index.php; index index.php;

View File

@ -0,0 +1,10 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name w.mracs.dev;
location / {
proxy_pass http://localhost:3000;
}
}

View File

@ -37,7 +37,7 @@ http {
## ##
ssl_protocols TLSv1.2 TLSv1.3; ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers on; ssl_prefer_server_ciphers off;
ssl_stapling on; ssl_stapling on;
ssl_certificate /etc/letsencrypt/live/mracs.dev/fullchain.pem; ssl_certificate /etc/letsencrypt/live/mracs.dev/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/mracs.dev/privkey.pem; ssl_certificate_key /etc/letsencrypt/live/mracs.dev/privkey.pem;