Last active
April 16, 2019 13:36
-
-
Save AymanFekri/0a24e6f652bfbd5f8b60a29ff25f8591 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| 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