nginx Questions
4
Solved
Here is my website conf (using nginx v1.25.1):
# Redirect to https
server {
listen 80;
server_name domain.name www.domain.name;
location ^~ /.well-known/acme-challenge/ {
root /acme-challenge...
Giotto asked 20/3 at 18:55
5
I have Artifactory Pro Docker image version 5.4.5 set up. I am using Nginx as well with HTTPS enabled using self-signed certificate. When I try running docker pull command, i get error:
[root@tom ...
Pensioner asked 31/5, 2019 at 17:38
4
Solved
I have a small, test FastAPI web application that is serving a simple HTML page that requires a css style sheet located in the static folder. It is installed on a Linode server (Ubuntu 20.04 LTS), ...
1
I'm trying to get Nginx to run with minimal privileges while being able to act as a proxy on port 80. In other words, this is the securityContext I'm working with:
securityContext:
allowPrivilege...
Vanmeter asked 31/3, 2023 at 12:58
6
Solved
I'm trying to deploy a django website on a ubuntu 14.04 vps using nginx and gunicorn but my css files and js files are not getting loaded.i developed it on the default django development server and...
Pocketful asked 5/7, 2017 at 6:41
3
Solved
I am trying to upload files from a client through an nginx ingress. I have set the following annotations on the ingress after receiving a 413 response;
Annotations: nginx.ingress.kubernetes.io/body...
Pamela asked 15/7, 2020 at 23:25
4
I have successfully configurated Nginx as a reverse proxy for my web-application. It correctly redirects requests made from my Angular SPA to Web API written in Asp Core 2.1. However, in my Web API...
Raceway asked 12/12, 2018 at 15:0
5
Solved
I was using phpmyadmin (Version information: 4.0.10deb1) on php 7.0.7 & nginx 1.4.6 . When I was trying to import a csv file to one of tables, I saw the max size allowed indicated on the phpmya...
Czarism asked 28/7, 2016 at 2:59
5
I am trying to make an OIDC authentication/authorization against a keycloak server with an Android app I'm building.
I am getting the following error, which is leading me to receive a 502 in my ap...
Revelationist asked 15/8, 2019 at 0:32
2
Any one familiar with nginx? I am trying to enable proxy_protocol in a conditional manner in a stream block ie for certain endpoints I want the proxy protocol header to be added. For others I dont ...
Celestinecelestite asked 7/9, 2021 at 0:10
2
Solved
I have no idea where to place my gzip compression lines within my http block, shown here.
http {
default_type application/octet-stream;
include /etc/nginx/mime.types;
log_format main '$remote...
3
Solved
I recently bought a DigitalOcean account, and am attempting to set up my web site. However, whenever I enter the IP address of my site, I get this page:
Welcome to nginx!
If you see this page, t...
Miner asked 27/5, 2015 at 14:24
3
I am trying to setup nginx to handle file uploads and pass the file information on to a backend server once done. I came across a post at https://coderwall.com/p/swgfvw that shows how to do t...
Gretta asked 24/4, 2014 at 9:57
2
Solved
We're trying to apply a dynamic name to a firewall rule for opening 8089 and 8843 in GCP using terraform based on the list of instance group urls. Instead of taking that result and giving us the la...
1
I am running a docker with lua-nginx image.
In my Nginx conf file I call the lua script from server { } section:
server {
listen 80;
server_name _;
location /payload {
content_by_lua_file /etc...
6
Solved
I am trying to redirect a example.com/minio location to minio console, which is run behind a nginx proxy both run by a docker compose file. My problem is that, when I'm trying to reverse proxy the ...
Lueck asked 26/4, 2022 at 21:49
2
Problem : Nginx Server is buffring the Server sent events(SSE).
Setup : Node v12.13.1, Nginx 1.16.1, Chrome v80
Scenario:
I tried to turn off buffering with proxy_buffering off; and even added "...
Lynch asked 4/4, 2020 at 13:48
3
I've installed Fedora and Ngnix, added all the configuration files for my local development, when I started to see this error
nginx: [warn] could not build optimal types_hash, you should increase ...
6
Solved
I use nginX/1.6 and laravel when i posted data to server i get this error 413 Request Entity Too Large. i tried many solutions as bellow
1- set client_max_body_size 100m; in server and location an...
9
Solved
I am having an intriguing problem where whenever I use add_header in my virtual host configuration on an ubuntu server running nginx with PHP and php-fpm it simply doesn't work and I have no idea w...
Krypton asked 26/8, 2013 at 18:11
3
Solved
I am running currently a webserver with ASP.NET Core 3.1 and a Blazor project.
Recently when upgrading to .NET 6.0 I encountered (even with a blank Blazor project) some problems with a websocket er...
5
Solved
I have the following that config that works when I try <NodeIP>:30080
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: app-deployment
spec:
replicas: 3
template:
metadata:...
Inadvisable asked 25/8, 2018 at 23:7
3
I'm trying to setup a UDP Load Balancer using NGINX (1.12.1).
However I'm getting an error...
[ec2-user@ip-172-31-0-184 nginx]$ sudo service nginx start Starting
nginx: nginx: [emerg] unknown ...
Aureole asked 14/6, 2018 at 6:25
8
Solved
I am trying to start an NGINX server within a docker container configured through docker-compose. The catch is, however, that I would like to substitute an environment variable inside of the http s...
Chalkstone asked 18/6, 2019 at 12:50
6
I have OSX El Capitan. I installed Nginx-Full via homebrew. I am supposed to be able to start and stop services with
brew services Nginx-Full Start
I run that command and it seems to start no...
Margarettamargarette asked 26/6, 2016 at 16:37
1 Next >
© 2022 - 2024 — McMap. All rights reserved.