Skip to main content
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 ...
Keith Langmead's user avatar
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 ...
Alexey Ten's user avatar
  • 9,277
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, "...
PawelC's user avatar
  • 199
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;...
mforsetti's user avatar
  • 2,898
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|...
Gerard H. Pille's user avatar
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 ...
A. Darwin's user avatar
  • 632
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 / ...
Andrew Schulman's user avatar
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.
schmichri's user avatar
  • 397
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/...
Bluekat's user avatar
  • 136
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 ...
Piotr P. Karwasz's user avatar
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 ...
Nibrass H's user avatar
  • 146
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/">
Spirit's user avatar
  • 224

Only top scored, non community-wiki answers of a minimum length are eligible