Created
February 23, 2021 16:37
-
-
Save jhochwald/c4df94ea157fdda2ab1b3cfc752201e7 to your computer and use it in GitHub Desktop.
NGINX reverse proxy config for Graylog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
location / { | |
# Only Allow the Cloudflare Servers to use this URL (Not Scope) | |
include /etc/nginx/snippets/enatec_CloudFlareAllowlist.conf; | |
# Set some Default for Reverse Proxies (Not Scope) | |
include /etc/nginx/snippets/enatec_proxydefaults.conf; | |
# This is not required | |
add_header Front-End-Https on; | |
add_header Cache-Control "public, must-revalidate"; | |
# Mostly the GrayLog defaults | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-Proto $scheme; | |
proxy_set_header Host $host:$server_port; | |
proxy_set_header X-Forwarded-Host $host; | |
proxy_set_header X-Forwarded-Server $host; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header X-Graylog-Server-URL https://$server_name/; | |
proxy_pass http://127.0.0.1:9000; | |
# This is not required | |
proxy_http_version 1.1; | |
# We want do control the returned content/URLs | |
proxy_redirect off; | |
# Apply the Filter to every content the Backend returns | |
sub_filter_types *; | |
sub_filter_once off; | |
# Modify the Header (not required) | |
sub_filter_last_modified on; | |
# This is where we replace http://127.0.0.1:9000 with the called hostname | |
sub_filter "http://$proxy_host" "$scheme://$host:$server_port"; | |
# Remove the Version string (optinal) | |
sub_filter "4.0.5+d95b909" "latest"; | |
# Fix the Link (optional) | |
sub_filter "https://developers.helloreverb.com/swagger/" "https://swagger.io"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment