All Questions
48 questions
0
votes
1
answer
33
views
Flask Nginx docker web page not responding - windows
Everything runs fine, the flask port 5000 works, but Nginx port web page not responding.
Please help and thank you.
Here are my code, docker file, nginx.conf, .py:
[[[[[enter image description here](...
0
votes
1
answer
289
views
X-Real-IP and X-Forwarded-For Headers not returning true ip? (nginx, fastapi, docker)
I am using FastAPI and nginx within a docker container. I have configured my nginx so that it should be forwarding the correct headers, however the X-Real-IP or X-Forwarded-For headers are returning ...
-1
votes
1
answer
181
views
I can't run odoo on nginx using docker [closed]
I am trying to run odoo on nginx in docker but the page is giving me an error.
my docker compose
(https://i.sstatic.net/19Z6aEW3.png)
my configuration ngix
(https://i.sstatic.net/jt5bGLPF.png)
web ...
0
votes
1
answer
4k
views
Expose Grafana from Docker behind Nginx
Background
My app stack uses several Docker containers managed by docker compose:
PostgreSQL at port 5433
FastAPI (Python) backend at port 8000
NodeJS frontend at port 8090 and exposed to 80 (via ...
1
vote
1
answer
4k
views
Running FastAPI in docker with uvicorn and gunicorn nginx
I am trying to build a FastAPI application with ubuntu 22.04 docker image, gunicorn and uvicorn and nginx as webserver. Gunicorn and uvicorn services are started using supervisord.
python is installed ...
0
votes
0
answers
408
views
Errno 99 error while attempting to bind on address
So I'm building a telegram bot on aiogram and i need to use webhooks for that. So i decided to use docker-compose(i'm really new in this) and when i run it i get this error
Error
app_1 | ...
0
votes
1
answer
690
views
Docker compose not installing django or not finding Django after installation
Docker-Compose.yml
version: '3.9'
services:
nginx:
restart: unless-stopped
build:
context: .
dockerfile: ./docker/nginx/Dockerfile
ports:
- 80:80
- 443:443
...
1
vote
1
answer
4k
views
Static files not loading using nginx and docker
I'm having approximately the same error as in this question, as concerning Django, all my pages are loaded correctly but not my static files. I guess it has something to do with an error in my ...
3
votes
2
answers
1k
views
Unable to serve django static files via nginx and docker
I am having issue with configuring a nginx server using docker and django. I think the issues lies in volume path.
Here is my directory structure
-nginx
--default.conf
--Dockerfile
-portfolio_app (...
1
vote
2
answers
4k
views
FastAPI, nginx, Docker Explicitly Add Each Endpoint
I have a simple FastAPI that returns a string based on a query parameter at the endpoint /day. Trying to deploy using Docker and nginx as a reverse proxy. In order to get http://localhost:3000/api/day?...
0
votes
0
answers
110
views
Flask static send from localhost to server
I am deploying an application on localhost and listening on a port on a remote server which is bound to a domain, the application shows up fine on localhost and the static folder is not passed to the ...
0
votes
1
answer
2k
views
nginx not working when deployed to Azure App Service
I have a program consisting of Fast API, Celery, Flower and nginx written in Python. I use docker compose to build the images and deploy them to Azure App Service as a multi-container app.
My issue is ...
1
vote
2
answers
13k
views
Cannot start service api: OCI runtime create failed: container_linux.go:380: starting container process caused: exec: "python manage.py runserver
I would like to running docker-compose.
during running react and django application, docker-compose returns the following error:
(base) dominik@Precision:~/PycharmProjects/humanet-docker$ ls
api ...
1
vote
0
answers
98
views
nginx 404 not found even all my instance setting and Dockerfile still the same
I already deploy my project with this docker config and it work for so long now i need to add more instance on AWS so I use every config the same as previous instance but there alert nginx 404 not ...
1
vote
1
answer
731
views
Django OAuth Toolkit - Introspection Request: "Authentication credentials were not provided."
Good morning or afternoon even good evening!
I have been trying to achieve the separating resource server from the auth server using OAuth Toolkit with Django and I got stuck.
Tryed:
First, I have ...