Skip to content

Instantly share code, notes, and snippets.

@homanp
Last active February 13, 2018 23:51
Show Gist options
  • Save homanp/4e49daedddabfa5b8321 to your computer and use it in GitHub Desktop.
Save homanp/4e49daedddabfa5b8321 to your computer and use it in GitHub Desktop.
Nginx Html5Mode for ReactJS
server {
listen 80;
server_name react.dev;
root /app/react-demo;
location / {
include /etc/nginx/mime.types;
try_files $uri $uri/ /index.html;
}
}
@nguyenbathanh
Copy link

Working.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment