DD-3602: [BACK]. [Доверенность водителю с КЭП] - [реализовать отправку документа через АПИ Диадок] - ПОДПИСАНИЕ КРИПТО ПРО fix nginx
build (signer) TeamCity build finished Details

This commit is contained in:
cherednik 2025-03-10 16:56:17 +04:00
parent 73d6b04a10
commit 484dd35faa
1 changed files with 9 additions and 7 deletions

View File

@ -5,14 +5,16 @@ server {
root /usr/src/signer/public;
location ~* \.php$ {
try_files $uri $uri/ /index.php last;
fastcgi_split_path_info (.+?\.php)(/.*)$;
fastcgi_pass signer:9000;
fastcgi_index index.php;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
fastcgi_pass signer:9000;
try_files $uri =404;
fastcgi_index index.php;
}
location ~* .php/ {