mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-05 09:09:21 +01:00
17 lines
300 B
Plaintext
17 lines
300 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
listen 443;
|
|
listen [::]:443;
|
|
|
|
server_name something.example.org;
|
|
|
|
# NOTE: For X-Real-IP & X-Forwarded-For see ../conf.d/rproxy.conf
|
|
# Behind CloudFlare see ../conf.d/cloudflare.conf
|
|
|
|
location / {
|
|
proxy_pass http://localhost:8080/;
|
|
}
|
|
}
|
|
|