15 lines
288 B
Plaintext
15 lines
288 B
Plaintext
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;
|
|
}
|
|
} |