Angular NginX config example
Angular 2/4/5/6/7/8/9/10/11/12 App NginX config.
# Don't forget.
$ service nginx restart
If you don't want to open raw file :D
# #
# Your Angular.io NginX .conf
# #
# #
# Daemon Errors Workers
# #
daemon off;
error_log /dev/error_log error;
worker_processes 4;
events {
worker_connections 1024;
}
http {
log_format gzip ' [$time_local] ' ' "$request" $status $bytes_sent' ;
access_log /dev/stdout;
charset utf-8;
default_type application/octet-stream;
types {
text/html html;
text/javascript js;
text/css css;
image/png png;
image/jpg jpg;
image/svg+xml svg svgz;
application/octet-steam eot;
application/octet-steam ttf;
application/octet-steam woff;
}
server {
listen 3353;
server_name local.example.com;
root app/;
add_header " X-UA-Compatible" " IE=Edge,chrome=1" ;
location ~ ^/(scripts| styles)/(.* )$ {
root .tmp/;
error_page 404 =200 @asset_pass;
try_files $uri =404;
break ;
}
location @asset_pass {
root app/;
try_files $uri =404;
}
location / {
expires -1;
add_header Pragma " no-cache" ;
add_header Cache-Control " no-store, no-cache, must-revalicate, post-check=0 pre-check=0" ;
root app/;
try_files $uri $uri / /index.html =404;
break ;
}
}
server {
listen 3354;
sendfile on;
# #
# Gzip Settings
# #
gzip on;
gzip_http_version 1.1;
gzip_disable " MSIE [1-6]\." ;
gzip_min_length 1100;
gzip_vary on;
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;
gzip_comp_level 9;
root dist/;
location ~ ^/(assets| bower_components| scripts| styles| views) {
expires 31d;
add_header Cache-Control public;
}
# #
# Main file index.html
# #
location / {
try_files $uri $uri / /index.html =404;
}
}
}