diff --git a/nginx.conf b/nginx.conf index c509905..96876fb 100644 --- a/nginx.conf +++ b/nginx.conf @@ -11,13 +11,17 @@ server { index hello.html; } location ~ ^/app/ { + add_header X-UA-Compatible IE=edge; + add_header Content-Language en; rewrite ^/app/(.*) /app.html last; } - location ~ ^/(auth|api)/ { proxy_pass http://empact; } + location /favicon.ico { + alias /home/empact/app/static/images/favicon.ico; + } location ~ .*\.(js|css|png)$ { add_header Cache-Control public; expires max;