ホームページ > バックエンド開発 > PHPチュートリアル > centos で nginx サーバーを構成してルート ディレクトリを変更する

centos で nginx サーバーを構成してルート ディレクトリを変更する

WBOY
リリース: 2016-07-29 09:02:33
オリジナル
987 人が閲覧しました

nginxサーバーをインストールした後、nginxのルートディレクトリが/usr/share/nginx/html/以下にあることが分かりましたが、デプロイメントファイルに関してはこのディレクトリに慣れていないので、ルートディレクトリを変更しようとしましたnginx がアクセスするディレクトリ

# vi /etc/nginx/conf.d/default.conf

#
# The <span>default</span> server
#
server {
listen 80;
server_name localhost;
<span>root  </span><span>/var/</span><span>www;  #修改新的目录为var下的www目录</span>#charset koi8-r;

#access_log logs/host.access.log main;

location / {
root /var/www;
index index.html index.htm index.php index.phtml; #添加index.php和index.phtml
# example
#ModSecurityEnabled on;
#ModSecurityConfig /etc/nginx/modsecurity.conf;
}

error_page 404 /404.html;
location = /404.html {
root /var/www; #修改新的目录文件
}

# redirect server error pages to the <span>static</span> page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www;  #修改新的目录文件
}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http:<span>//</span><span>127.0.0.1;</span>
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root /var/www;  #修改新的目录文件
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME <span>$document_root$fastcgi_script_name</span>;
include fastcgi_params;
}

# deny access to .htaccess files, <span>if</span> Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
ログイン後にコピー

# :wq! #保存して終了

nginx サーバーを再起動します

# service nginx restart

変更は成功しました!

上記では、centos のルート ディレクトリを変更するように nginx サーバーを設定する方法を、関連する側面も含めて紹介しました。PHP チュートリアルに興味のある友人に役立つことを願っています。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート