-
im setting up a proxy on a java ee webapp deployed on a glassfish server and want it to be accessible by a subdomain on Nginx but, still have resources not served and while clicking on any <h:......
-
I have a odoo 11 installation behind a Nginx proxy. Its been working for a while but now when you access it, its showing index of / instead of Odoo login page (see screenshot).Here is my Nginx ......
-
I am running browser-sync behind a reverse nginx proxy and I am able to retrieve files and assets through it, but the snippet and the UI scripts URL's dont contain my URL proxy base path and I cant ......
-
I'm trying to run the following command in order to set up a web server on my Raspberry Pi 3 running Raspbian.sudo apt-get install nginx php7.0-fpm php7.0-curl php7.0-xml php7.0-json php7.0-zip php7.......
-
Hello to the stackoverflow communityi have a problem running nginx with static filessome files work and some are not working and im lost for be honest :)here is my nginx vhostserver { listen ......
-
We trying to set up alerting by parsing nginx error, and we need only messages with [error] level. ([error] 27720#27720: *29765923 access forbidden by rule, client: blalbablab). Main goal is to not ......
-
When I try it in localhost, it works normally, the response header includes Set-Cookie, and the browser also sets the cookieBut when I try the following settings via httpsFront-end domain name: ......
-
I have a website served via AWS CloudFront. I've been getting a ton of entries in my nginx logs that look something like this:nginx_1 | 103.241.51.144 - - [09/Aug/2020:16:03:08 +0000] "......
-
I have a little issue regarding to my website. When I launched it, all URLs were without subdomain www., so all urls were in the form: https://example.com/.....Some time later my website dropped in ......
-
I'm by no means nginx guru. I have a feeling i'm doing too many unneccessary redirects in my nginx config.// Redirect from www and non www to httpsserver { server_name www.domain.lt domain.......
-
I am hosting my django chat application in AWS using NGINX and wsgi as gunicorn in one port and ASGI as Daphne in another port.Now http requests are working fine but while sending websocket request I ......
-
I am using Nginx on Kubernetes 1.19 (trying both docker desktop and GKE) and am trying to expose gRPC services. I have installed Nginx with the following command and confirm I can expose REST services ......
-
I have nginx running in docker container on host machine with IP 192.168.1.2.And I have some other docker containers running on the same machine: sonarr, radarr, portainer etc.In nginx conf I have ......
-
I'm trying to proxy an app from subdirectory using NGINXlocation /blog { rewrite ^/blog/(.*)$ /$1 break; proxy_pass http://example.com; proxy_redirect off;}However asset's paths is broken.......
-
I'm new to nginx and need to modify an application's nginx configuration file to always return a 404 if the URL contains a file extension. My nginx.conf file is as follows:worker_processes 1;......