Nginx : WP運用中の公開ディレクトリ名変更
Nginx の設定変更
1 2 3 |
$sudo vi /usr/local/nginx/conf.d/8080.conf (略) root /PATH/ディレクトリ名; |
ディレクトリ名変更
1 |
sudo mv /PATH/変更前ディレクトリ /PATH/変更後ディレクトリ |
構文チェック
1 2 3 |
$ sudo nginx -t nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful |
nginx再起動
1 |
$ sudo service nginx restart |