Установка nginx и php-fpm для yii1
В хосты, чтобы в браузере удобно было набирать: 127.0.0.1 yii1 В общую конфу nginx, чтобы не захламлять конфу хостов: index index.php index.htm index.html; Конфа хоста; server { listen 80; server_name yii1; root /var/www/yii1; access_log off; error_log /var/www/yii1/yii1_error.log; include /etc/nginx/art.conf/yii1-fpm; } Конфа fpm в nginx(rewrite поменяем потом): location ~ /\.ht { deny all; } location / { try_files $uri $uri/ @rewrite; } location @rewrite { rewrite ^/(.*)$ /index.php?q=$1; } location ~ \.php$ { fastcgi_pass unix:/run/php/php7.3-fpm-vadim.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; inclu...

Комментарии
Отправить комментарий