web-dev-qa-db-ja.com

Nginx enable siteコマンド

LinuxでApacheを使用してWebサイトを有効にする方法は誰でも知っています。私たちは皆、a2ensiteコマンドの使用に同意していると確信しています。

残念ながら、デフォルトの同等のコマンドはNginxに付属していませんが、ubuntuにサイトを有効/無効にしてそれらを一覧表示できるパッケージをインストールしたことがありました。

問題は、このパッケージの名前を覚えていないことです。

誰かが私が話していることを知っていますか?

このパッケージの名前とコマンド名を教えてください。

144

このスクリプトを作成してください/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 <[email protected]>

# 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
75

Ubuntuリポジトリからnginxパッケージをインストールした場合、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

それらの1つをアクティブにするには、次のコマンドを実行します。

ln -s /etc/nginx/sites-available/www.example.org.conf /etc/nginx/sites-enabled/

Apacheに付属するスクリプトは、基本的には上記と同様の処理を行う単純なシェルラッパーです。

ファイルをリンクしたら、必ずSudo service nginx reload/service nginx reloadを実行してください

190
pkhamre

nginx_ensite およびnginx_dissite

33
Michael Hampton

NGINX

nginxの公式アップストリームパッケージの1つhttp://nginx.org/packages/ を使用している場合、最善の方法は_/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

ただし、Debian/Ubuntu派生物を使用している場合は、_conf.d_に加えて、 evil non-standard _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-*/*" \)

  • 次のコマンドを使用して、すべてのenabledサイトのリストを取得できます。

    find /etc/nginx -maxdepth 2 \( -path "*/conf.d/*.conf" -or -path "*/sites-enabled/*" \)

次に、Debian/Ubuntuでサイトを無効/有効にするには:

  • サイトをdisableするには:構成が_conf.d_にある場合は、ファイルの名前を変更して_.conf_サフィックスがなくなるようにします。または、_sites-enabled_の場合は、_sites-enabled_の外に移動します。

  • サイトを有効にするには、サイトを_/etc/nginx/conf.d_に移動し、名前を変更して_.conf_サフィックスを持つようにします。

追伸Debianの_include /etc/nginx/sites-enabled/*;_が悪だと思うのはなぜですか?そのディレクトリ内のいくつかのファイルを編集してみて、 emacs バックアップファイルを作成し(_~_サフィックスを付けて)、もう一度確認してください。

3
cnst

別の方法は、サイトの構成ファイルの名前を.confなしで終わる名前に変更することです

例えば。 Sudo mv mysite.conf mysite.conf.disabled

次にnginxをリロードすると、そのvhostはデフォルトにフォールバックします。

0
Pyrite