Skip to content

Instantly share code, notes, and snippets.

@skyway22
Created December 23, 2023 08:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skyway22/d491be7c6734b83b014309fc3779865f to your computer and use it in GitHub Desktop.
Save skyway22/d491be7c6734b83b014309fc3779865f to your computer and use it in GitHub Desktop.
server {
server_name <name>.cumvreau.eu;
location / {
proxy_pass <adress>;
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_hide_header X-Frame-Options;
proxy_set_header X-Frame-Options "SAMEORIGIN";
proxy_read_timeout 90;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment