1 vote
Issue with IIS Hosting: DNS_PROBE_FINISHED_NXDOMAIN when Reloading
If the esuport.mm.local is the actual address you're using, I'd assume this is a local intranet site? On the computer you're getting this issue, have you checked the DNS servers that it is using? Is ...
1 vote
Accepted
Getting nginx to pass all routes to Angular index.html
The last part of try_files is a URI for internal redirect and it should starts with /. So the correct use is try_files $uri $uri/ /index.html;. But in this case you probably need to redirect ...
1 vote
Accepted
Npm install and ng build takes 35-40min
I found solution :) The problem was with the build configuration, I had optimizations turned on everywhere, I changed the configuration in angular.json to " optimization": false, "...
1 vote
1 rewrite or internal redirection cycle while internally redirecting to "/en/index.html"
can you modify try_files to try_files $uri /$1/index.html?$args =404;, restart nginx, and try again? Not it gives 404 Not Found. map $http_accept_language $accept_language { ~*^de de; ~*^fr fr;...
1 vote
NGINX serving multiple angular applications - static files missing error
Problem with the regexes, try location ~ ^/admin/.*\.(html|js|css|eot|svg|ttf|woff|woff2|png|gif|ico|jpg|jpeg)$ { try_files $request_uri $request_uri/ =404; } location ~ ^/monitoring/.*\.(html|...
1 vote
Angular server side rendering keeps going down to 502 errors
HTTP 502 typically means that one server (the one originating the HTTP 502 response) tried to talk to another server and failed. You mention that rebooting the "first" server (the one ...
1 vote
Apache config for frontend https + Backend http
Your http virtual host just redirects to https. Yes? You can do that very simply with <VirtualHost *:80> ServerName abc.example.com ServerAlias www.abc.example.com Redirect permanent / ...
1 vote
Is reverse proxy recommended in production environment?
It's most of the time a good idea to reverse proxy applications and it's default behaviour in the most setup. It gives you flexibility, maintainability and security as well.
1 vote
Is reverse proxy recommended in production environment?
According to Krestel official documentation is a good practice to use a reverse proxy. The implementation doc is good and it goes into more details about it: https://docs.microsoft.com/en-us/aspnet/...
1 vote
Nginx und Tomcat For Spring and Angular App
The URL your Angular app uses to call the API should be configurable or automatically detected. So you can use: the JavaScript global location object or a similar object on the server side, like ...
1 vote
Renaming the index.html on Google App Engine
Edited Answer: The issue that you aren't able to rename index.html on App Engine is because of the cached files and because you've your app.yaml file wrong. An easy way to avoid the cached file issue ...
1 vote
Accepted
How to config Nginx to serve Angular app when the angular urls are like this http://serverpath/a/b?
You should specify a base path in the index.html: <base href="/"> <base href="/a/b/">
Only top scored, non community-wiki answers of a minimum length are eligible
Related Tags
angular × 46nginx × 23
node.js × 9
docker × 8
http × 4
amazon-web-services × 3
ssl × 3
apache-2.4 × 3
iis × 3
https × 3
apache2 × 3
docker-compose × 3
nginx-reverse-proxy × 3
cors × 3
springboot × 3
reverse-proxy × 2
tomcat × 2
deployment × 2
websocket × 2
apache-2.2 × 1
ubuntu × 1
domain-name-system × 1
vpn × 1
routing × 1
linux-networking × 1