Created
January 18, 2016 08:03
-
-
Save tigris/d35c2428c86a49f89c74 to your computer and use it in GitHub Desktop.
Fix for elasticbeanstalk puma and serving of static files from the public folder
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
--- | |
container_commands: | |
10_copy: | |
command: sudo cp -f config/nginx.conf /etc/nginx/conf.d/webapp.conf | |
20_reload: | |
command: sudo service nginx reload |
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
upstream my_app { | |
server unix:///var/run/puma/my_app.sock; | |
} | |
server { | |
listen 80; | |
server_name _ localhost; # need to listen to localhost for worker tier | |
root /var/app/current/public; | |
location / { | |
proxy_set_header Host $host; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
if (!-f $request_filename) { | |
proxy_pass http://my_app; # match the name of upstream directive which is defined above | |
break; | |
} | |
gzip_static on; | |
gzip on; | |
expires max; | |
add_header Cache-Control public; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment