Skip to content

Instantly share code, notes, and snippets.

@progval
Created March 30, 2019 18:35
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 progval/59a3e1e1e77b5d1ea8413b31c8ccee13 to your computer and use it in GitHub Desktop.
Save progval/59a3e1e1e77b5d1ea8413b31c8ccee13 to your computer and use it in GitHub Desktop.
server {
listen 80;
listen [::]:80;
server_name assets.oc.todon.fr;
location / {
#root /home/mastodon-run/public-system;
try_files $uri @rgw;
}
location @rgw {
proxy_set_header Host octodonfr.radosgw.helium;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass_header Server;
proxy_pass http://octodonfr.radosgw.helium:7480;
}
sendfile on;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment