Skip to main content

Tedshd's Dev note

nginx - study log

Table of Contents

# nginx - Study Log

半調子的紀錄…

## Command Line


sudo service nginx start

sudo service nginx restart

sudo service nginx stop

# 測試 nginx 設定
sudo nginx -t

## config


# document root
root /usr/share/nginx/html;

# set page show
index index.html index.htm index.php;

# 把 lib 目錄打開
location /lib {
    autoindex on;
}

refer - Can I hide all server / os info?