ubuntu での nginx サーバー構成の詳細な説明
1.nginx サーバーのインストール
sudo apt-get install nginx
2.nginx サーバーStart
sudo /etc/init.d/nginx start
3. 複数のドメイン名が異なるバックエンドサーバーに対応します
/etc/nginx/sites- Enabled/ ディレクトリ内のデフォルト設定ファイルを削除します。
ドメイン名に対応する設定ファイルを作成します。
例: test.youlunshidai.com
#通过upstream nodejs__upstream 可以配置多台nodejs节点,做负载均衡 upstream nodejs__upstream__test__youlunshidai { server 127.0.0.1:8089; #服务器地址和端口号 #server 127.0.0.1:8088; #负载均衡服务器地址和端口号 keepalive 64; #设置存活时间。如果不设置可能会产生大量的timewait } server { listen 80; server_name test.youlunshidai.com; access_log /var/log/nginx/test_youlunshidai.log; #nginx日志文件 location / { proxy_set_header x-real-ip $remote_addr; proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for; proxy_set_header host $http_host; proxy_set_header x-nginx-proxy true; proxy_set_header connection ""; proxy_http_version 1.1; proxy_pass http://nodejs__upstream__test__youlunshidai; #反向代理转发 http://nodejs__upstream; } }
他のドメイン名とバックエンド サーバーがある場合は、ディレクトリ内に対応するドメイン名構成ファイルの作成を続けます
以上がubuntu での nginx サーバー構成例の分析の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。