Е
Size: a a a
Е
S
🙈
S
Е
AL
🙈
AL
🙈
AL
🙈
🙈
🙈
AL
server {
listen 80;
server_name dev.site.ru;
root /var/www/dev.site.ru/htdocs;
index index.php index.html;
error_log /var/log/nginx/dev.site.ru.error_log;
auth_basic "Restricted Area";
auth_basic_user_file /etc/nginx/.htpasswd;
location ~ ^/\.well-known/acme-challenge/ {
root /var/www/certbot;
allow all;
default_type "text/plain";
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors off;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
}
location ~ /\. {
access_log off;
log_not_found off;
deny all;
}
location = /favicon.png {
access_log off;
log_not_found off;
}
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
}
AL
AL
🙈
🙈
🙈