Skip to content

Instantly share code, notes, and snippets.

@mmubasher
Created September 30, 2016 20:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmubasher/bf2b36a24b011e8154aea00baca731f0 to your computer and use it in GitHub Desktop.
Save mmubasher/bf2b36a24b011e8154aea00baca731f0 to your computer and use it in GitHub Desktop.
nginx configuration file for angular 2
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri$args $uri$args/ $uri $uri/ /index.html =404;
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment