nginx設定


サーバドライバ
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로 리다이렉팅
        }