2019独角兽企业重金招聘Python工程师标准>>>
1.环境监测安装
## 1.1 gcc环境
yum install gcc-c++
1.2 PCRE
(Perl Compatible Regular Expressions)是一个Perl库,包括 perl 兼容的正则表达式库。nginx的http模块使用pcre来解析正则表达式,所以需要在linux上安装pcre库。
pcre-devel是使用pcre开发的一个二次开发库。nginx也需要此库
yum install -y pcre pcre-devel
1.3 zlib
zlib库提供了很多种压缩和解压缩的方式,nginx使用zlib对http包的内容进行gzip,所以需要在linux上安装zlib库。
yum install -y zlib zlib-devel
1.4 openssl
OpenSSL 是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及SSL协议,并提供丰富的应用程序供测试或其它目的使用。
nginx不仅支持http协议,还支持https(即在ssl协议上传输http),所以需要在linux安装openssl库。
yum install -y openssl openssl-devel
nginx安装
解压
[root@hzzchy software]# tar -zxvf nginx-1.14.0.tar.gz
复制文件到data
[root@hzzchy software]# cp -r nginx-1.14.0 /data
重命名文件夹
[root@hzzchy data]# mv nginx-1.14.0 nginx
环境变量配置
vi /etc/orifile 添加 export PATH=$PATH:/usr/local/nginx/sbin
启动nginx
nginx
重新加载
nginx -s reload
停止
nginx -s stop
配置前端项目
vi /usr/local/nginx/conf/nginx.conf
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /data/dist;
try_files $uri $uri/ /index.html;
index index.html index.htm;
}
location /api{
proxy_pass http://192.168.0.111:8090;
开启htt和https
[root@hzzchy nginx]# firewall-cmd --permanent --zone=public --add-service=http success [root@hzzchy nginx]# firewall-cmd --permanent --zone=public --add-service=https success [root@hzzchy nginx]# firewall-cmd --reload