Skip to content

Instantly share code, notes, and snippets.

@AymanFekri
Last active April 16, 2019 13:36
Show Gist options
  • Select an option

  • Save AymanFekri/0a24e6f652bfbd5f8b60a29ff25f8591 to your computer and use it in GitHub Desktop.

Select an option

Save AymanFekri/0a24e6f652bfbd5f8b60a29ff25f8591 to your computer and use it in GitHub Desktop.
server {
listen 80;
root /home/rails/folder/public;
server_name sub.domain.ltd;
index index.htm index.html;
location ~ /.well-known {
allow all;
}
location / {
try_files $uri @proxy;
}
location @proxy {
rewrite ^/(.*)$ /$1 break;
proxy_pass http://localhost:3001;
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;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment