nginx

Nginx install

web server nginx install WEBサーバーNginxをインストール

WEBサーバー Nginx のインストール

コマンドから

				
					apt install nginx
				
			

ufw インストール

				
					apt install ufw

# ufw allow 80
# ufw allow 443

# ufw enable 
# ufw status
Status: active

To                         Action      From
--                         ------      ----
80                         ALLOW       Anywhere                  
443                        ALLOW       Anywhere                  
80 (v6)                    ALLOW       Anywhere (v6)             
443 (v6)                   ALLOW       Anywhere (v6)    
				
			

動作確認

動作確認は、WEBブラウザから

http://サーバーURL または IPアドレス/

Related Posts

wordpress icon

WP-CLI インストール

WP-CLI は WordPress を管理するためのコマンドラインインターフェースで、プラグインのアップデートなどの実行ができる。