2022-11-09 15:22:36 -03:00
|
|
|
server {
|
|
|
|
listen 0.0.0.0:80;
|
|
|
|
root /app/ui/public;
|
|
|
|
index index.php index.html index.htm;
|
|
|
|
|
2023-06-12 21:14:07 -04:00
|
|
|
access_log /var/logs/nginx/ui.access.log;
|
|
|
|
error_log /var/logs/nginx/ui.error.log;
|
|
|
|
|
2022-11-09 15:22:36 -03:00
|
|
|
location / {
|
|
|
|
try_files $uri $uri/ /index.php?$query_string;
|
|
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
|
|
try_files $uri =404;
|
|
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
|
|
fastcgi_pass ui:9000;
|
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
|
|
|
fastcgi_param REQUEST_URI $request_uri;
|
|
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
|
}
|
2023-06-12 21:14:07 -04:00
|
|
|
}
|