Nginx 安裝及簡單使用
阿新 • • 發佈:2021-01-24
技術標籤:nginx
Nginx 安裝及簡單使用
步驟
一、安裝
- 安裝yum工具
$ sudo yum install yum-utils
- 建立yum倉庫
建立倉庫檔案:
$ vim /etc/yum.repos.d/nignx.reps
檔案內容:
[nginx-stable]
name=nginx stable
repobaseurl=http://nginx.org/packages/centos/$releasever/$basearch/gpg
check=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing. key
module_hotfixes=true
[nginx-mainline]
name=nginx mainline
repobaseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/gpg
check=1
enabled=0
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true
- 安裝nignx
$ sudo yum install nignx
- 安裝密碼工具httpd-tools
$ sudo yum install httpd-tools
二、配置
- 建立密碼檔案
$ htpasswd -c /etc/nginx/my.htpasswd [account]
[pwd]
[pwd again]
- 配置 /etc/nginx/nginx.conf
server {
#監聽埠
listen 8080;
#監聽地址
server_name 124.70.178.66;
#charset koi8-r;
#access_log logs/host.access.log main;
#配置轉發
location / {
root html;
index index.html index.htm;
#轉發地址
proxy_pass http://127.0.0.1:8081;
#配置basic驗證
auth_basic "SkyWalking Auth";
auth_basic_user_file /etc/nginx/my.htpasswd;
}
}
三、執行命令
#驗證配置檔案:
$ nginx -t #啟動服務:
$ nginx #退出服務:
$ nginx -s quit #強制關閉服務:
$ nginx -s stop #過載服務,服務不會中止:
$ nginx -s reload