nginx設定
サーバドライバ
nginx
-->localhost:8080接続
サーバーを閉じる
nginx -s stop
再起動
nginx -s reload
優先パラメータの変更
nginxのデフォルトポートは80です
sudo systemctl restart nginxを使用して再起動
80ポートから4000 Expressサーバへの接続
http->httpリダイレクト
nginx
-->localhost:8080接続
サーバーを閉じる
nginx -s stop
再起動
nginx -s reload
優先パラメータの変更
vi /opt/homebrew/etc/nginx/nginx.conf
ubuntuにnginxをインストールするsudo apt install nginx
-->> 내 IP주소로 접속 가능
//スタートsudo systemctl start nginx
//再起動sudo systemctl restart nginx
//ストップsudo systemctl stop nginx
//状態sudo systemctl status nginx
NGINXのWelcomeページを削除sudo mv /etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf.disabled
優先パラメータserver 속성
->
sudo vi /etc/nginx/sites-enabled/default
http, event 속성
->
sudo vi /etc/nginx/nginx.conf
テスト設定sudo nginx -t
逆プロキシ
nginxのデフォルトポートは80です
sudo systemctl restart nginxを使用して再起動
80ポートから4000 Expressサーバへの接続
http->httpリダイレクト
location / {
return 301 https://dalso.duckdns.org$request_uri; ## HTTPS로 리다이렉팅
}
Reference
この問題について(nginx設定), 我々は、より多くの情報をここで見つけました https://velog.io/@wooya/nginx-설정テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol