Questions tagged [nginx]
Nginx ("engine x") is a web server, reverse proxy, TCP stream proxy and mail proxy, released under a BSD-like license.
45,087
questions
0
votes
0answers
6 views
NGINX to remember a user based on http_referer
When a user visits the site directly, the $http_referer value will be blank. And when the user goes to the internal page of the site, $http_referer will be equal to the address of the first page. Is ...
-2
votes
0answers
24 views
NGINX Reverse Proxy Security Issue (SSL_ERROR_RX_RECORD_TOO_LONG)
I am new to Ubuntu 18.04 and nginx/1.18.0 (Ubuntu) and NGINX reverse proxy
I have succesfully set up secure NGINX as web server on several locally hosted domains.
Now i need to use the reverse proxy ...
0
votes
0answers
10 views
Bad Gateway error when running nginx on AWS Elastic Beanstalk
I deployed 2 docker containers to Elastic Beanstalk: an nginx container and a server app. I used Dockerrun.aws.json version 2 to link the containers. However I get the following nginx error:
[error] 6#...
0
votes
0answers
11 views
Common shared docker volume doesn't show gulp build files
Its my first question here and I am very new to docker, so sorry for any mistakes in advance.
I am trying to dockerize a nodejs app with nginx (in a different container) in front for serving static ...
0
votes
0answers
5 views
Nginx Unit Logging
I am new to Nginx Unit.
I have a Python module that is called by a certain route. I am not using any of the Python frameworks.
I would like to log certain information for debugging purposes.
What ...
0
votes
0answers
10 views
Nginx proxy pass configuration proxy
I have proxy_pass on nginx server and testcookie-nginx-module, everyhing working fine but it doesnt load js, css, etc.. files, only php, html, etc.. Here is my nginx.conf:
#user nobody;
...
0
votes
0answers
14 views
no 0-RTT on nginx 1.19.6
I use a compiled version of nginx (standard, current mainline version 1.19.6) on Fedora 33.
Everything works fine, i have Qualys A+ with all 100%.
But I can't get 0-RTT to work. Everything is ...
-2
votes
0answers
13 views
DAMN ! worker 2 (pid: 2954) died, killed by signal 9 :( trying respawn … Respawned uWSGI worker 2 (new pid: 3008) [closed]
I am using Pytorch with Django on ubuntu ec2. It works well without Nginx and apache but it fails with the server.
DAMN! worker 2 (PID: 2954) died, killed by signal 9 :( trying respawn ...
0
votes
1answer
17 views
How to place GitLab behind nginx
I just got a Raspberry Pi 4B and i would like to place on it Nextcloud and Gitlab servers.
Using the instructions i was able to install GitLab successfully on my RPI4.
As second step I diceded to ...
0
votes
0answers
19 views
How to deploy Next.js app with nginx to subpath?
My goal
I would like to deploy my Next.js app with nginx to subpath.
My setting is the following:
Nginx config
location /subpath/ {
proxy_redirect off;
proxy_set_header Host ...
0
votes
3answers
34 views
How to mount a folder into nginx public folder
I have a directory in the host and I want to mount it to a container and to Nginx public folder which is a container itself.
Here is my docker-compose.yml file :
version: "3.3"
services:
...
0
votes
1answer
29 views
Kubernetes multi-container pod: how to get network traffic between pods … 502 error?
I am working on fixing some errors in an existing Kubernetes multi-container one pod deployment. I have part of it fixed; I just am missing the syntax to route the traffic from the 'frontend' ...
0
votes
0answers
12 views
Permissions and files structure for Next.js with Express.js and NGINX and Letsencrypt
want to add a React and Next.js app to my VPS.
The app also uses a server with Express.
I saw some tutorials like this one, but it doesn't cover some topics.
For example:
I do not want to add them to ...
0
votes
0answers
29 views
index.php not loading from ubuntu server VM (nginx & sftp)
I'll try to be short as it can get bloated.
I set up an ubuntu server 20.04 VM on an Oracle vbox.
I installed nginx, php7.4, Xdebug 3.
I configured everything properly for remote debugging and sftp ( ...
2
votes
1answer
36 views
Convert NGINX rewrite rules to Apache htaccess [closed]
I have a client who is moving away from an NGINX webserver to Apache. Everything is simple nothing complicated however since I'm an NGINX kinda guy I forgot how to convert the NGINX rewrite rules onto ...