今天整理了下,在centos 7.6 系统下怎么配置多个conf文件。

step 1:在nginx.conf文件所在目录新建conf.d目录,即mkdir conf.d,为确保权限能够访问到

 chmod 777 conf.d

step 2:编辑nginx.conf文件,内容为:

#user nobody;
worker_processes 1;
error_log /usr/local/nginx/logs/error.log;
error_log /usr/local/nginx/logs/error.log notice;
error_log /usr/local/nginx/logs/error.log info;
#pid logs/nginx.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 /usr/local/nginx/logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
include /usr/local/nginx/conf/conf.d/*.conf;

step 3:在conf.d目录下随便写个.conf文件, 内容为:

upstream harbor-server{
          server 192.168.92.129:80;
          server 192.168.92.130:80;
server {
    listen 80;
    server_name harbor.gblfy.com;
    location / {
        proxy_pass http://harbor-server;

step 4:测试下conf文件格式是否正确,nginx -t

step 5:启动nginx

step 6:浏览器输入地址访问

今天整理了下,在centos 7.6 系统下怎么配置多个conf文件。step 1:在nginx.conf文件所在目录新建conf.d目录,即mkdir conf.d,为确保权限能够访问到 chmod 777 conf.dstep 2:编辑nginx.conf文件,内容为:#user nobody;worker_processes 1;error_log /usr/local/nginx/logs/error.log;error_log /usr/local/nginx/logs/erro
一、Nginx简介与安装 1、Nginx简介   Nginx是一个高性能Web服务器,除了Nginx之外还有Apache、Tomcat、Jetty等Web服务器。那么Nginx相对于其它Web服务器有什么优势呢?   a、Tomcat和Jetty面向java语言,先天就是重量级的Web服务器,其性能与Nginx没有可比性;   b、Apache的发展时间很长,而且是目前的世界第一大Web服务器,它...
项目比较多,nginx.conf文件也显得较为繁琐。如果都放在nginx.conf文件中看起来又非常的杂乱,在nginx.conf文件中使用include一个文件夹的形式,这样只要给每个新增项目、系统、或者同一个规则的地址,单独建一个 **.conf文件就好管理的多了。 1.在nginx安装目录...../conf下,新建 nginxconf 文件夹,与nginx.conf同级目录。 2. 在nginxconf 创建你需要的多个 *.conf文件,如nginx_80.conf,命名规则自己定
#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; defa..
nginx conf多个server可以实现多站点吗 在/etc/nginx/下建一个文件夹放站点的配置文件,如example地址是:/etc/nginx/example 在example文件夹里建多个站点的conf文件,如:example1.conf,example2.conf 每个conf配置文件如下,可修改s...