我是靠谱客的博主 娇气母鸡,最近开发中收集的这篇文章主要介绍centos 安装nginx,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.安装源

rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

2.安装nginx

yum -y install nginx

3.配置nginx


#user
nobody;
worker_processes
4;
#error_log
logs/error.log;
#error_log
logs/error.log
notice;
#error_log
logs/error.log
info;
#pid
logs/nginx.pid;
events {
worker_connections
65535;
}
http {
include
mime.types;
default_type
application/octet-stream;
keepalive_timeout
3600;
server {
charset utf-8;
listen
80;
server_name
test.rendu.cn;
#charset koi8-r;
#access_log
logs/host.access.log
main;
client_max_body_size 100m;
location / {
root /data/rendu-web;#react/vue项目的打包后的distroot
try_files $uri $uri/ /index.html;
#禁止缓存,每次都从服务器请求
add_header Cache-Control no-store;
}
location /file/download/ {
proxy_pass http://192.168.1.151:3180/;
proxy_buffering off;
}
location /api/ {
proxy_http_version 1.1;
proxy_read_timeout 3600s;
proxy_send_timeout 3600s;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:9538/api/;
}
}
}

4.启动nginx

systemctl start nginx

5.配置开机启动

systemctl enable nginx

最后

以上就是娇气母鸡为你收集整理的centos 安装nginx的全部内容,希望文章能够帮你解决centos 安装nginx所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(110)

评论列表共有 0 条评论

立即
投稿
返回
顶部