52 lines
1.6 KiB
Nginx Configuration File
52 lines
1.6 KiB
Nginx Configuration File
# Configuration pour le Web (Port 80 interne, mappé sur 8090)
|
|
server {
|
|
listen 80;
|
|
server_name _; # Accepte tout car NPM a déjà filtré le domaine
|
|
index index.php index.html;
|
|
root /var/www/public;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php?$query_string;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
try_files $uri =404;
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
fastcgi_pass app:9000;
|
|
fastcgi_index index.php;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
|
# Optimisation pour le proxy
|
|
fastcgi_param HTTP_X_FORWARDED_FOR $http_x_forwarded_for;
|
|
fastcgi_param HTTP_X_FORWARDED_PROTO $http_x_forwarded_proto;
|
|
}
|
|
}
|
|
|
|
# Configuration pour l'API (Port 81 interne, mappé sur 8091)
|
|
server {
|
|
listen 81;
|
|
server_name _; # Accepte tout car NPM a déjà filtré le domaine
|
|
index index.php index.html;
|
|
root /var/www/public;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php?$query_string;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
try_files $uri =404;
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
fastcgi_pass app:9000;
|
|
fastcgi_index index.php;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
|
# Optimisation pour le proxy
|
|
fastcgi_param HTTP_X_FORWARDED_FOR $http_x_forwarded_for;
|
|
fastcgi_param HTTP_X_FORWARDED_PROTO $http_x_forwarded_proto;
|
|
}
|
|
}
|