mytube-backend/docker/nginx/config/nginx.conf
2024-02-23 14:06:49 +01:00

17 lines
339 B
Nginx Configuration File

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