| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 | upstream app{    server app:5173;}server {    listen 80 default_server;    # root /var/www/html/api/src/web;    # root /var/www/html/app/dist;    index index.html index.php;    server_name *.ouatterrir.fr;    charset utf-8;    location / {      proxy_set_header X-Real-IP $remote_addr;      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;      proxy_set_header Host $http_host;      proxy_set_header X-NginX-Proxy true;      proxy_set_header X-Ssl on;      proxy_cache off;      proxy_pass http://app;      proxy_redirect off;    }    # https://serversforhackers.com/c/nginx-php-in-subdirectory    location @api {        rewrite ^/api/(.*)$ /api/index.php;    }    location /api {      # rewrite /api/(.*)$ /$1 break;      # root /var/www/html/api/src/web;      alias /var/www/html/api/src/web/;      # index index.php;      # try_files $uri $uri/ /index.php?$query_string;      try_files $uri $uri/ @api;      error_log  /var/log/nginx/api-error.log debug;      location ~ \.php$ {          fastcgi_split_path_info ^(.+\.php)(/.+)$;          fastcgi_pass api:9000;          fastcgi_index index.php;          include fastcgi_params;          fastcgi_param SCRIPT_FILENAME $request_filename;          fastcgi_intercept_errors off;          fastcgi_buffer_size 16k;          fastcgi_buffers 4 16k;          fastcgi_read_timeout 150;      }    }    location = /favicon.ico { access_log off; log_not_found off; }    location = /robots.txt  { access_log off; log_not_found off; }    access_log on;    error_log  /var/log/nginx/app-error.log error;    sendfile off;    client_max_body_size 100m;    # location ~ \.php$ {    #     fastcgi_split_path_info ^(.+\.php)(/.+)$;    #     fastcgi_pass api:9000;    #     fastcgi_index index.php;    #     include fastcgi_params;    #     fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;    #     fastcgi_intercept_errors off;    #     fastcgi_buffer_size 16k;    #     fastcgi_buffers 4 16k;    #     fastcgi_read_timeout 150;    # }    location ~ /\.ht {        deny all;    }}
 |