DA
Size: a a a
DA
SJ
V
P
P
V
UN
server {
listen 80 default_server;
root /var/www/MyApp/public_html;
index index.php index.html index.htm;
server_name _;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php# {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php7.1-fpm.sock;
}
}
public_html -> myapp/public
UN
VY
M
server {
listen 80 default_server;
root /var/www/MyApp/public_html;
index index.php index.html index.htm;
server_name _;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php# {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php7.1-fpm.sock;
}
}
public_html -> myapp/public
public_html -> myapp/public?
SJ
public_html -> myapp/public?
SJ
server {
listen 80 default_server;
root /var/www/MyApp/public_html;
index index.php index.html index.htm;
server_name _;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php# {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php7.1-fpm.sock;
}
}
public_html -> myapp/public
M
location ~ \.php#надо
location ~ \.php$
SJ
server {
listen 80 default_server;
root /var/www/MyApp/public_html;
index index.php index.html index.htm;
server_name _;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php# {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php7.1-fpm.sock;
}
}
public_html -> myapp/public
PP