This commit is contained in:
msnie
2024-02-03 11:58:42 +01:00
parent 17ca1c805f
commit 5b0b5f548c
706 changed files with 135245 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
FROM nginx:latest
COPY default.conf /etc/nginx/conf.d
+15
View File
@@ -0,0 +1,15 @@
server {
listen 80;
listen [::]:80;
server_name read.knast.cc;
}
server {
server_name read.knast.cc;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto https;
proxy_pass http://ghost:2368;
}
}