Skip to content

Instantly share code, notes, and snippets.

@TyrfingMjolnir
Created July 25, 2017 13:43
Show Gist options
  • Save TyrfingMjolnir/187e405d2d190bf89f62c63e7b19367f to your computer and use it in GitHub Desktop.
Save TyrfingMjolnir/187e405d2d190bf89f62c63e7b19367f to your computer and use it in GitHub Desktop.
# FileMaker CWP
server {
  listen 0.0.0.0:8080;
  location / {
    proxy_pass http://127.0.0.1:80;
    proxy_set_header        Host            $host;
    proxy_set_header        X-Real-IP       $remote_addr;
    proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment