Nginx Ubuntu 14.04で複数のアプリケーションをホスト

Nginx Ubuntu 14.04で複数のアプリケーションをホスト

解決策を見つけるのに苦労しています。 NGINXを実行するUbuntu 14.04システムがあります。次の2つのフォルダをホストしたいです。

/var/www/apphost.comp.ill.com/app1/home/index.html /var/www/apphost.comp.ill.com/app2/index.html

「apphost.comp.ill.com/app1」に接続するときにapp1のインデックスファイルを開き、「apphost.comp.ill.com/app2」に接続するときにapp2のインデックスファイルを開きたいです。

これを達成するには、「/etc/nginx/sites-available/apphost.comp.ill.com」を編集する必要があると思いますが、方法がわからないようです。いくつかのアプローチを試してオンラインで検索しましたが、解決策が見つかりませんでした。現在私のファイルは次のとおりです。

server {
    listen 80;
    listen [::]:80;

    root /var/www/apphost.comp.ill.com/app1/home;     
    index index.html index.htm home home.html;

    # Make site accessible from http://localhost/
    server_name apphost.comp.ill.com;

    location / {
            # First attempt to serve request as file, then
            # as directory, then fall back to displaying a 404.
            try_files $uri $uri/ =404;
            # Uncomment to enable naxsi on this location
            # include /etc/nginx/naxsi.rules
    }

apphost.comp.ill.comにアクセスすると、app1で動作します。 「apphost.comp.ill.com/app1」に移動するとどのように機能し、「apphost.comp.ill.com/app2」に移動したら機能するようにapp2を追加できますか?

助けてください。ありがとう

ベストアンサー1

私はこれを試してみました:

server {
    listen 80;
    listen [::]:80;

    index index.html index.htm home home.html;

    # Make site accessible from http://localhost/
    server_name apphost.comp.ill.com;

    location /app1 {
            # we need to use alias here to strip the "app1" from 
            # the requested path
            alias /var/www/apphost.comp.ill.com/app1/home;

            # First attempt to serve request as file, then
            # as directory, then fall back to displaying a 404.
            try_files $uri $uri/ =404;
            # Uncomment to enable naxsi on this location
            # include /etc/nginx/naxsi.rules
    }    
    location /app2 {
            # we don't need an alias here because app2 matches the
            # directory structure
            root /var/www/apphost.comp.ill.com/;

            # First attempt to serve request as file, then
            # as directory, then fall back to displaying a 404.
            try_files $uri $uri/ =404;
            # Uncomment to enable naxsi on this location
            # include /etc/nginx/naxsi.rules
    }
}

テストでは... / app1でナビゲートするのはうまくいかなかったので、前にスラッシュなしで/ app1と/ app2を使用することをお勧めします。

エイリアスコマンドのドキュメント:http://nginx.org/en/docs/http/ngx_http_core_module.html#alias

おすすめ記事