阿里云服务器相关

服务器信息

centos_7_04_64_20G

CentOS7使用firewalld打开关闭防火墙与端口

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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

1
2
3
4
5
6
7
8
提示No package nginx available 需要先安装epe:
yum install epel-release

安装epel之后
yum -y install nginx

安装完成之后
service nginx start 启动nginx

配置Nginx

cd到 /etc/nginx目录下

1
vi nginx.conf

配置,以下有两个配置案例:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 1.反向代理,将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 {
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 2.监听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 {
}
}

配置完成,重启Nginx

1
nginx -s reload

开启Gzip (以VUE项目为例)

有时候代码文件比较大,加载速度会很慢,这时候可以开启Gzip。

相比未开启Gzip的文件,开启Gzip的项目整体小70%左右,大大提升了加载速度。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
server {
listen 8088;
server_name localhost;
location / {
gzip on;
gzip_min_length 1k;
gzip_buffers 16 64k;
gzip_http_version 1.1;
gzip_comp_level 9;
gzip_types text/plain text/javascript application/javascript image/jpeg image/gif image/png application/font-woff application/x-javascript text/css application/xml;
gzip_vary on;
root /xxx/xxx/xxx;
index index.html
}
}

配置完成,重启Nginx

1
nginx -s reload
谢谢你的支持,我会更加努力的创作!
版权声明

Itcnz's Blog by Zhouhappy is licensed under a Creative Commons BY-NC-ND 4.0 International License.
Zhouhappy 创作并维护的Itcnz's Blog 博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于Itcnz's Blog 博客( https://www.itcnz.top ),如非特别说明,转载请注明出处!