LoginSignup
16
17

More than 5 years have passed since last update.

nginx 起動ポートの変更

Posted at

nginx で使用するポートの変更(Ubuntu)

このファイルの設定を変更すればOK
sudo vi /etc/nginx/sites-enabled/default

変更前

server {
        listen 80 default_server;
        listen [::]:80 default_server ipv6only=on;

        root /usr/share/nginx/html;
        index index.html index.htm;

変更後

server {
        listen 81 default_server;
        listen [::]:81 default_server ipv6only=on;

        root /usr/share/nginx/html;
        index index.html index.htm;
16
17
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
16
17