Linuxでapacheを使用してWebサイトを有効にする方法を知っています。私たち全員がa2ensiteコマンドの使用に同意していると確信しています。
残念ながら、Nginxにはデフォルトの同等のコマンドはありませんが、サイトを有効化/無効化して一覧表示できるパッケージをubuntuにインストールしたことがあります。
問題は、このパッケージの名前を覚えていないことです。
誰が私が話しているのか知っていますか?
このパッケージの名前とコマンド名を教えてください。
Linuxでapacheを使用してWebサイトを有効にする方法を知っています。私たち全員がa2ensiteコマンドの使用に同意していると確信しています。
残念ながら、Nginxにはデフォルトの同等のコマンドはありませんが、サイトを有効化/無効化して一覧表示できるパッケージをubuntuにインストールしたことがあります。
問題は、このパッケージの名前を覚えていないことです。
誰が私が話しているのか知っていますか?
このパッケージの名前とコマンド名を教えてください。
回答:
nginx
Ubuntuリポジトリからパッケージをインストールした場合、2つのディレクトリがあります。
/etc/nginx/sites-enabled
および/etc/nginx/sites-available
。
メインのnginx構成で/etc/nginx/nginx.conf
は、次の行があります。
include /etc/nginx/sites-enabled/*.conf;
したがって、基本的に利用可能なすべての仮想ホストをリストするには、次のコマンドを実行できます。
ls /etc/nginx/sites-available
それらのいずれかをアクティブにするには、次のコマンドを実行します。
ln -s /etc/nginx/sites-available/www.example.org.conf /etc/nginx/sites-enabled/
Apacheに付属するスクリプトは、基本的に上記と同様のことを行う単純なシェルラッパーです。
ファイルをリンクした後、sudo service nginx reload
/ を実行することを忘れないでくださいservice nginx reload
このスクリプト/usr/bin/nginx_modsite
を作成して実行可能にするだけです。
#!/bin/bash
##
# File:
# nginx_modsite
# Description:
# Provides a basic script to automate enabling and disabling websites found
# in the default configuration directories:
# /etc/nginx/sites-available and /etc/nginx/sites-enabled
# For easy access to this script, copy it into the directory:
# /usr/local/sbin
# Run this script without any arguments or with -h or --help to see a basic
# help dialog displaying all options.
##
# Copyright (C) 2010 Michael Lustfield <mtecknology@ubuntu.com>
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
##
# Default Settings
##
NGINX_CONF_FILE="$(awk -F= -v RS=' ' '/conf-path/ {print $2}' <<< $(nginx -V 2>&1))"
NGINX_CONF_DIR="${NGINX_CONF_FILE%/*}"
NGINX_SITES_AVAILABLE="$NGINX_CONF_DIR/sites-available"
NGINX_SITES_ENABLED="$NGINX_CONF_DIR/sites-enabled"
SELECTED_SITE="$2"
##
# Script Functions
##
ngx_enable_site() {
[[ ! "$SELECTED_SITE" ]] &&
ngx_select_site "not_enabled"
[[ ! -e "$NGINX_SITES_AVAILABLE/$SELECTED_SITE" ]] &&
ngx_error "Site does not appear to exist."
[[ -e "$NGINX_SITES_ENABLED/$SELECTED_SITE" ]] &&
ngx_error "Site appears to already be enabled"
ln -sf "$NGINX_SITES_AVAILABLE/$SELECTED_SITE" -T "$NGINX_SITES_ENABLED/$SELECTED_SITE"
ngx_reload
}
ngx_disable_site() {
[[ ! "$SELECTED_SITE" ]] &&
ngx_select_site "is_enabled"
[[ ! -e "$NGINX_SITES_AVAILABLE/$SELECTED_SITE" ]] &&
ngx_error "Site does not appear to be \'available\'. - Not Removing"
[[ ! -e "$NGINX_SITES_ENABLED/$SELECTED_SITE" ]] &&
ngx_error "Site does not appear to be enabled."
rm -f "$NGINX_SITES_ENABLED/$SELECTED_SITE"
ngx_reload
}
ngx_list_site() {
echo "Available sites:"
ngx_sites "available"
echo "Enabled Sites"
ngx_sites "enabled"
}
##
# Helper Functions
##
ngx_select_site() {
sites_avail=($NGINX_SITES_AVAILABLE/*)
sa="${sites_avail[@]##*/}"
sites_en=($NGINX_SITES_ENABLED/*)
se="${sites_en[@]##*/}"
case "$1" in
not_enabled) sites=$(comm -13 <(printf "%s\n" $se) <(printf "%s\n" $sa));;
is_enabled) sites=$(comm -12 <(printf "%s\n" $se) <(printf "%s\n" $sa));;
esac
ngx_prompt "$sites"
}
ngx_prompt() {
sites=($1)
i=0
echo "SELECT A WEBSITE:"
for site in ${sites[@]}; do
echo -e "$i:\t${sites[$i]}"
((i++))
done
read -p "Enter number for website: " i
SELECTED_SITE="${sites[$i]}"
}
ngx_sites() {
case "$1" in
available) dir="$NGINX_SITES_AVAILABLE";;
enabled) dir="$NGINX_SITES_ENABLED";;
esac
for file in $dir/*; do
echo -e "\t${file#*$dir/}"
done
}
ngx_reload() {
read -p "Would you like to reload the Nginx configuration now? (Y/n) " reload
[[ "$reload" != "n" && "$reload" != "N" ]] && invoke-rc.d nginx reload
}
ngx_error() {
echo -e "${0##*/}: ERROR: $1"
[[ "$2" ]] && ngx_help
exit 1
}
ngx_help() {
echo "Usage: ${0##*/} [options]"
echo "Options:"
echo -e "\t<-e|--enable> <site>\tEnable site"
echo -e "\t<-d|--disable> <site>\tDisable site"
echo -e "\t<-l|--list>\t\tList sites"
echo -e "\t<-h|--help>\t\tDisplay help"
echo -e "\n\tIf <site> is left out a selection of options will be presented."
echo -e "\tIt is assumed you are using the default sites-enabled and"
echo -e "\tsites-disabled located at $NGINX_CONF_DIR."
}
##
# Core Piece
##
case "$1" in
-e|--enable) ngx_enable_site;;
-d|--disable) ngx_disable_site;;
-l|--list) ngx_list_site;;
-h|--help) ngx_help;;
*) ngx_error "No Options Selected" 1; ngx_help;;
esac
使い方:
すべてのサイトをリストするには
$ sudo nginx_modsite -l
サイト「test_website」を有効にするには
$ sudo nginx_modsite -e test_website
サイト「test_website」を無効にするには
$ sudo nginx_modsite -d test_website
を参照しnginx_ensite
ていnginx_dissite
ますか?
http://nginx.org/packages/からnginxの公式アップストリームパッケージの1つを使用している場合、最良の方法はディレクトリに移動し、影響を受けるファイルの名前をサフィックスから別のものに変更することです。サイトを無効にします。/etc/nginx/conf.d
.conf
sudo mv -i /etc/nginx/conf.d/default.conf{,.off}
またはそれを有効にするための反対:
sudo mv -i /etc/nginx/conf.d/example.com.conf{.disabled,}
これは、デフォルト/etc/nginx/nginx.conf
に次のinclude
ディレクティブがあるためです。
http {
…
include /etc/nginx/conf.d/*.conf;
}
ただし、Debian / Ubuntu派生物を使用している場合、に加えconf.d
て、邪悪な非標準sites-available
およびsites-enabled
ディレクトリがあり、その拡張子に関係なくいくつかのファイルが含まれている可能性があります。
http {
…
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
そのため、Debian / Ubuntuでは、最初にサイト構成の場所を把握する必要があります。
次のコマンドを使用して、指定されたマスクに一致するすべての通常ファイルを検索することにより、使用可能なすべてのサイトのリストを取得できますfind(1)
。
find /etc/nginx -maxdepth 2 -type f \( -path "*/conf.d/*.conf" -or -path "*/sites-*/*" \)
次のコマンドを使用して、有効なすべてのサイトのリストを取得できます。
find /etc/nginx -maxdepth 2 \( -path "*/conf.d/*.conf" -or -path "*/sites-enabled/*" \)
次に、Debian / Ubuntuのサイトを無効/有効にするには:
サイトを無効にするには:設定がにある場合conf.d
、ファイルの名前を変更して、.conf
サフィックスを削除します。または入っている場合はsites-enabled
、外に移動しsites-enabled
ます。
サイトを有効にするには、サイトをに移動し/etc/nginx/conf.d
、名前を変更して.conf
接尾辞を付けるのが最善の方法です。
PSなぜDebian include /etc/nginx/sites-enabled/*;
は悪だと思うのですか?そのディレクトリ内のいくつかのファイルを編集してみemacs
て、バックアップファイル(~
サフィックス付き)を作成してから、もう一度質問してください。
conf.d
ディレクトリはモジュールのような、サーバー全体の設定で、プラグイン、FastCGIのハンドラなど、明示的ではないホストを格納します/ vhost構成および2)serverfault.com/a/825297/86189のファイルを編集しないでくださいsites-enabled
conf.d
これは、sites-enabled
- コンテキストと同じコンテキストに含まれているhttp
ためです。したがって、モジュールおよびプラグインディレクティブは適用されない場合があります。同様に、ファイルを編集してsites-enabled
はならないという仮定は希望的観測にすぎません。ディストリビューション内やディレクトリ内にはそのような指示はありません。stackoverflow.com/q/45852224/1122270など、それから生じるあらゆる種類の問題があります。
conf.d
おそらく、NginxのDebianメンテナー(または、おそらくアップストリームとの互換性のために保持されている)について私は間違っています。でファイルを編集しないことについてはsites-enabled
、希望的観測ではなく、彼らがNginxでエミュレートしようとしたApacheの下の想定されるフローです。Apacheではa2ensite
、a2dissite
スクリプトとスクリプトが存在するため、非常に明白です。残念ながら、Nginxにはこのパッケージの保守品質がDebianでどれほど低いかを示す種類はありません。どちらもドキュメントがありません、本当です。
ls -al sites-enabled
ApacheまたはNginxの単純な例は、ディレクトリ内の既存のファイルが、-available
提供されるa2enmod
/ a2dismod
scirpts とともに、Apacheの下のモジュールのからのシンボリックリンクであるということを示しています。
conf.d
です。
別の方法は、サイトの構成ファイルの名前を.confなしで終了するものに変更することです
例えば sudo mv mysite.conf mysite.conf.disabled
次にnginxをリロードすると、そのvhostはデフォルトにフォールバックします。
include /etc/nginx/sites-enabled/*;
、それが唯一としてのconfディレクトリが含まれて*.conf
sites-available
ありsites-enabled
、彼らにはメリットと使用があるのです。誰かは、おそらくnginx confの本当の問題のある行のバグレポートを提出するべきで/etc/nginx/sites-enabled/*.conf;
あり、おそらく彼らはおそらくそれが見落としだからでしょう。しかし、Debianのワークフローを尊重すれば、sites-available
とにかくファイルを編集し、有効にしたいファイルをシンボリックリンクすることになりますsites-enabled
。