博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx(九)-- Nginx实际使用配置
阅读量:6843 次
发布时间:2019-06-26

本文共 1103 字,大约阅读时间需要 3 分钟。

1.由于在nginx中需要配置很多东西,就会使得nginx.conf配置文件过于臃肿,所以我们会将配置文件合理的切分。大体的配置依然在nginx.conf中,其他的配置会放在etc下面的目录中。

2.etc文件中一般是放置配置文件的,所以 在 etc 中新建目录

  mkdir -p /etc/nginx/conf.d

  cd /etc/nginx/conf.d

  创建一个文件:vim virtual.conf  ,创建一个虚拟主机配置文件

3.将nginx.conf中 注释掉的配置 全部删除掉,并将 upstream 和 server 段 复制到 /etc/nginx/conf.d/virtual.conf中。如下:

   1)nginx.conf:

worker_processes  4; 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;    sendfile        on;    keepalive_timeout  65;    include /etc/nginx/conf.d/*.conf;  # 增加这一个,引用 /etc/nginx/conf.d 下面所有的配置文件
}

  2) virtual.conf:

upstream tomcat {      server 192.168.80.128:8088;      server 192.168.80.128:8089;}server {     listen       80;     server_name  localhost;    location / {         proxy_pass http://tomcat;    }}

4.访问 http://192.168.80.128/,出现tomcat的主页,ok,成功!

 

转载地址:http://guzul.baihongyu.com/

你可能感兴趣的文章
php xampp redis扩展
查看>>
apache 403
查看>>
scanf函数
查看>>
阿里云不做SaaS、要练好内功被集成,发布SaaS加速器
查看>>
双系统如何正确的删除Ubuntu
查看>>
大话it职场之经历风雨是否能见彩虹
查看>>
二叉树的遍历与还原
查看>>
我的友情链接
查看>>
二进制安装MariaDB 5.5.36
查看>>
我的友情链接
查看>>
DNS 安装与解析
查看>>
如何实现低成本site to site ***?
查看>>
用ProxyFactoryBean创建AOP代理
查看>>
使用MDT2013部署Win8系统之三 配置MDT服务器之导入操作系统
查看>>
An internal error occurred during: "Building workspace". Java heap space
查看>>
我的友情链接
查看>>
MongoDB 安装以及系统服务配置方法
查看>>
RAID 技术介绍
查看>>
ldap linux client详细配置
查看>>
【华为OJ】逆波兰
查看>>