0
私は幸福な状況に陥っています。 私は新しいサーバーで、nginx + php-fpm + mariadbを設定して、apacheからnginxに移動しました。Nginx + Yii app = js、css-net :: ERR_CONNECTION_REFUSED
ここではどこから飛び出したMVC構造のエラーの他に、別のバグがあります.Chromeコンソールには、jpgとcssファイルへの接続にred-net :: ERR_CONNECTION_REFUSEDが含まれています。
何ができますか?資産がYii Componentでエラーですか、NGINX設定ですか? これは私の設定です。
server {
listen 80;
server_name example.ru;
root /var/www/sites/example.ru;
set $yii_bootstrap "index.php";
charset utf-8;
location/{
index index.html $yii_bootstrap;
auth_basic "Restricted Content";
auth_basic_user_file /etc/nginx/.htpasswd;
try_files $uri $uri/ /$yii_bootstrap?$args;
}
location ~ ^/(protected|framework|themes/\w+/views) {
deny all;
}
location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ {
try_files $uri =404;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ \.php$ {
fastcgi_pass php-fpm;
fastcgi_split_path_info ^(.+\.php)(.*)$;
set $fsn /$yii_bootstrap;
if (-f $document_root$fastcgi_script_name){
set $fsn $fastcgi_script_name;
}
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fsn;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fsn;
}
location ~ \.css {
add_header Content-Type text/css;
}
location ~ \.js {
add_header Content-Type application/x-javascript;
}
}
.htaccessファイルがhttps」で始まるし、私は新しいものに移動し、すべてのスクリプトサーバを探していた後、私のnginxのサーバー上でSSLを有効にするのを忘れ
AddDefaultCharset UTF-8
php_flag display_startup_errors on
php_flag display_errors on
php_flag html_errors on
ERR_CONNECTION_REFUSEDを取得したURL全体をもう一度確認し、サーバーとポートが正しいことを再度確認します。私にとって理にかなっているのは、あなたがどこかに間違っているということだけです。 –