Last active
July 2, 2018 12:44
-
-
Save makasim/3e77e5384ef9953201d77ef943625776 to your computer and use it in GitHub Desktop.
server static files such as prod version of react.js app.
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
| FROM nginx:1.15 | |
| WORKDIR /var/www | |
| COPY /nginx.conf /etc/nginx/conf.d/app.conf | |
| ADD ./public /var/www | |
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; | |
| location / { | |
| root /var/www/; | |
| try_files $uri /index.html; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment