伺服器資訊
centos_7_04_64_20G
CentOS7使用firewalld開啟關閉防火牆與埠
1、firewalld的基本使用
啟動: systemctl start firewalld
檢視狀態: systemctl status firewalld
停止: systemctl disable firewalld
禁用: systemctl stop firewalld
2.firewalld是centos7的一大特性,最大的好處有兩個:支援動態更新,不用重啟服務;
啟動一個服務:systemctl start firewalld.service
關閉一個服務:systemctl stop firewalld.service
重啟一個服務:systemctl restart firewalld.service
顯示一個服務的狀態:systemctl status firewalld.service
在開機時啟用一個服務:systemctl enable firewalld.service
在開機時禁用一個服務:systemctl disable firewalld.service
檢視服務是否開機啟動:systemctl is-enabled firewalld.service
檢視已啟動的服務列表:systemctl list-unit-files|grep enabled
檢視啟動失敗的服務列表:systemctl --failed
3.配置firewalld-cmd
檢視版本: firewall-cmd --version
檢視幫助: firewall-cmd --help
顯示狀態: firewall-cmd --state
檢視所有開啟的埠: firewall-cmd --zone=public --list-ports
更新防火牆規則: firewall-cmd --reload
複製程式碼
安裝配置Nginx
安裝Nginx
提示No package nginx available 需要先安裝epe:
yum install epel-release
安裝epel之後
yum -y install nginx
安裝完成之後
service nginx start 啟動nginx
複製程式碼
配置Nginx
- cd到 /etc/nginx目錄下
vi nginx.conf
複製程式碼
- 配置,以下有兩個配置:
# 反向代理,將3389埠代理到80埠下
server {
listen 80;
# listen [::]:80 default_server;
server_name 127.0.0.1:3389;
root /home/app;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
proxy_pass http://127.0.0.1:3389;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
# 監聽8082埠,同時訪問ip:8082/teacher/static的時候代理到/home/vue/static目錄下
server {
listen 8082;
# listen [::]:80 default_server;
server_name _;
root /home/vue;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
index index.html index.htm;
}
location /teacher/static {
alias /home/vue/static;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
複製程式碼
3.配置完成,重啟Nginx
nginx -s reload
複製程式碼
總結
以上就是阿里雲伺服器的基本配置,瞭解更多可以看我的部落格