mytube-backend/docker/nginx/config/nginx.conf
2024-02-23 19:12:22 +01:00

17 lines
340 B
Nginx Configuration File

upstream host-backend-app {
server myTube-backend-app:9000;
}
server {
listen 80 default_server;
client_max_body_size 10000M;
location / {
fastcgi_pass host-backend-app;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME /var/www/html/public/index.php;
}
}