up / nginx.conf
RammPntxxx's picture
Create nginx.conf (#1)
b9b6d06 verified
raw
history blame contribute delete
342 Bytes
server {
listen 80;
server_name up.hostingz.xyz;
location / {
proxy_pass https://rammpntxxx-up.hf.space/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}