nginx安装配置
1、下载安装包
cd/usr/local/software (software可能没有,用mkdir创建或者只到local目录下也行)
wget http://nginx.org/download/nginx-1.6.2.tar.gz
(选择一个比较稳定的版本下载即可,或者手动下载后,用xshell传到该目录下也行)
参考文章的版本是1.6.2;我用这个版本一直没有成功,就改了版本
2、解压安装
tar -zxvf nginx-1.6.2.tar.gz -C /usr/local (local这个目录类似于Windows的program目录,所以一些软件可以都安装在这里)
3、下载依赖的库文件
yum install pcre
yum install pcre-devel
yum install zlib
yum install zlib-devel
4、进行configure配置
cd/usr/local/nginx-1.6.2 && ./configure --prefix=/usr/local/nginx
cd /usr/local/nginx-1.16.2/ && ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
5、编译安装( cd 到解压好的nginx-1.6.2,这个目录下安装编译)
make&&makeinstall
6、启动Nginx
执行完5步骤后,cd 到/usr/local/nginx目录下。执行ls,可以看到四个目录
conf----配置文件 html----网页文件 logs-----日志文件 sbin------主要二进制程序
启动命令: /usr/local/ngnix/sbin/nginx (无参数) 启动 (-s stop)关闭 (-s reload)重启
7、查看
查看是否成功 ps -ef | grep nginx (如果能看到两个相邻ID的进程,说明启动成功)
失败的可能 80端口被占用了。 netstat -ano | grep 80
如果成功的话,浏览器访问能看到欢迎页面:(http://服务器的IP:80)
Nginx的作用都是靠着conf/nginx.conf 配置文件发挥的作用。只要能读懂它,会简单的编写,基本算是入门级别了。
进入【我这里的路径和第2步:tar -zxvf nginx-1.6.2.tar.gz -C /usr/local 的不一样,我是直接解压到我的/usr/java目录里】
user root;# 运行用户,默认是nginx,可以不进行设置
worker_processes 1;#Nginx进程,一般设置和cpu核数一样
#错误日志存放位置
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;#进程pid存放位置
events {
worker_connections 1024;#单个后台进程的最大并发数
}
http {
include mime.types;#文件扩展名和类型映射表
default_type application/octet-stream;#默认的文件类型
#设置日志模式
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main; #nginx访问日志的存放位置
sendfile on;#是否开启高效传输模式 on开启 off关闭
#tcp_nopush on;#减少网络报文段的数量
#keepalive_timeout 0;#保持连接的时间,也叫超时时间
#gzip on; #开启gzip压缩模式
server {
listen 80;#配置监听端口【这里默认的,我没改】
server_name localhost;#配置域名
location / {
root /usr/leijinhang/dist/;#服务默认启动目录【改:也就是前端程序存储的地方】
index index.html index.htm;#默认访问文件
try_files$uri$uri/ /index.html;#vue官方推荐方法,用于解决页面刷新404
}
location /travel/ {#需要代理的api地址
proxy_pass http://localhost:9090/travel/;#改成自己的 9090对应的是后端的端口
}
location /emp/ {
proxy_pass http://localhost:9090/emp/;#改成自己的 9090对应的是后端的端口
}
location /upload/ {
proxy_pass http://localhost:9090/upload/;#改成自己的 9090对应的是后端的端口
}
#charset koi8-r;
#access_log logs/host.access.log main;
error_page 404 /404.html;# 项目根目录配置404页面
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;#错误状态码的显示页面,配置后需要重启
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ { #请求的url过滤,正则匹配,~为区分大小写,~*为不区分大小写。
# root html; #根目录
# fastcgi_pass 127.0.0.1:9000; #请求转向定义的服务器列表
# fastcgi_index index.php; # 如果请求的Fastcgi_index URI是以 / 结束的, 该指令设置的文件会被附加到URI的后面并保存在变量$fastcig_script_name中
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl; #监听端口
# server_name localhost; #域名
# ssl_certificate cert.pem; #证书位置
# ssl_certificate_key cert.key; #私钥位置
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5; #密码加密方式
# ssl_prefer_server_ciphers on; # ssl_prefer_server_ciphers on; #
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
编辑后保存切换到sbin 目录 ,启动nginx
cdsbin
./nginx
nginx安装ssl证书
1.https://freessl.cn/apply下面域名解析
2.对应的云服务器配置域名解析记录值
3.回到https://freessl.cn/apply点击验证 生成证书文件
4.在nginx安装目录下创建ssl文件夹放入证书文件
5.在nginx安装目录下创建 vhosts文件夹配置文件
示例
server {
listen 443 ssl;
server_name www.7xtech.cn;
#ssl on;
ssl_certificate ./ssl/www.7xtech.cn_chain.crt;
ssl_certificate_key ./ssl/www.7xtech.cn_key.key;
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://127.0.0.1;
#proxy_redirect off;
}
}
6.修改安装目录下的nginx.config文件
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /home/project/ttclear-gw/dist/;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
#error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
include ./vhosts/*.conf;
}