Questions tagged [angular]
It's a open-source (web) application platform intended for front-ends and is based on TypeScript programming language.
46 questions
0
votes
0
answers
244
views
(Nginx+Angular+Docker+VPS) Mixed Content: web page loaded over https requested insecure endpoint; content must be served over HTTPS
Attention throughout description I replaced:
my current domain -> my.example.com
actual server ip -> server-ip
Im new to deploying web apps.
I've managed to deploy my angular web app over https ...
1
vote
1
answer
709
views
Issue with IIS Hosting: DNS_PROBE_FINISHED_NXDOMAIN when Reloading
I have a project hosted on IIS that works fine most of the time. Sometimes reloading the page results in the error:
"This site can't be reached. Check if there is a typo in esuport.mm.local. If ...
0
votes
1
answer
138
views
Redirect from backend proxy back to ui
I have an Angular application deployed with an apache server on the same pod in the cluster.
In my vhost file, I have a couple of directives, that I am using to proxy to my other backend applications ...
0
votes
1
answer
5k
views
Getting nginx to pass all routes to Angular index.html
I have an Angular app hosted on nginx that talks to a back-end API. The back-end is working, the app is working when I go to example.com/ but if I go to example.com/custom/path/123 it doesn't get ...
1
vote
0
answers
266
views
Openshift nginx proxy_pass not redirecting from current host to another
This is my DockerFile
FROM docker-enterprise.net/developers-nginx/nginx1.22/rhel8/nginx-rhel8:latest
USER root
RUN mkdir /.ionicsecurity && \
chmod 775 /.ionicsecurity && \
...
0
votes
1
answer
8k
views
Browser displays black "xxx took too long to respond" for 3 seconds then displays the expected page
There are two apps A and B.
A is used to authenticate users and passes a token to B, B adds a cookie.
Something strange happens whenever the cookie expires or after a long period of time or hard ...
-1
votes
1
answer
1k
views
nginx: [emerg] "worker_processes" directive is not allowed here in /etc/nginx/conf.d/default.conf:1 in angular 15?
Iam facing with this error,
nginx: [emerg] "worker_processes" directive is not allowed here in /etc/nginx/conf.d/default.conf:1
Docker File:
FROM artifactorycloud.ual.com/v-docker/node:16 AS ...
0
votes
0
answers
1k
views
Web application not responding on IIS 10 after OS Upgrade
I upgraded to Windows 2022 and IIS 10 from Windows 2016 and IIS 8. But after the upgrade my 2 sites are badly affected. In the evening, when the traffic on the server increases, it goes into non-...
1
vote
1
answer
4k
views
Nginx Reverse Proxy do not load JS and CSS from other server
I have two version of a WebApp, running on two different servers (prod and dev). Prod version is available on exemple.com, and dev version on exemple.com/dev. However, when I set the proxy to load dev ...
0
votes
0
answers
415
views
Why can't I reach ng by the interface IP address?
I'm trying to use VirtualBox to set up an Ubuntu Linux VM to emulate the server I'm developing for. The server has three network interfaces.
On the server, there is a web page hosted by ng and an ...
0
votes
1
answer
92
views
Lightsail amazon - Can't reach port
I have an angular app on a Lightsail server. It seems to run correctly
See here
I created the rule in the network tab on the 4200 port
See here
But I cannot reach it from the outside ...
See here
Can ...
1
vote
1
answer
3k
views
Npm install and ng build takes 35-40min
I have environment:
Jenkins
Docker
proxmox with vm and lxc container
angular 9 project
Problem is with my Dockerfile building, it takes around 35-40min.
My dockerfile
FROM node:12.6-stretch
ARG ...
0
votes
1
answer
784
views
How to create auto redirect to 301 https + proxy_pass in NGINX for one location /
This is my nginx config:
server {
listen 80;
server_name example.com;
server_tokens off;
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
location / {
proxy_pass ...
1
vote
1
answer
2k
views
1 rewrite or internal redirection cycle while internally redirecting to "/en/index.html"
I want to host the Angular i18n website using the Nginx proxy.
As per the official Nginx configuration suggestion https://angular.io/guide/i18n-common-deploy#nginx-example, my app.conf file in the /...
0
votes
0
answers
803
views
Downloading large excel file in angular using xlsx library(net::ERR_INCOMPLETE_CHUNKED_ENCODING 200)
I am doing an excel file download using angular + springboot and the api returns application/json file. The transfer-encoding:chunked is always enabled and i see responses return http 1.1 .
I posted ...