Y
Size: a a a
Y
AN
PW
МК
МК
PW
PW
server {
listen 80;
root /app;
index index.php index.html;
charset utf-8;
server_name localhost;
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php;
}
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass hdwapi_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;
}
}
AN
server {
listen 80;
root /app;
index index.php index.html;
charset utf-8;
server_name localhost;
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php;
}
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass hdwapi_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;
}
}
PW
AN
AN
dn
server {
listen 80;
root /app;
index index.php index.html;
charset utf-8;
server_name localhost;
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php;
}
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass hdwapi_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;
}
}
PW
~?
Y
~?