博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
配置nginx服务器 —— Nginx添加多个二级子域名
阅读量:6808 次
发布时间:2019-06-26

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

1.安装nginx

2.安装好后进入Nginx目录中

在conf目录下建立一个vhost(ps:名字自己设定)文件夹

其中的$NGINXHOME为你的nginx目录

#进入到nginx目录cd $NGINXHOMEcd confmkdir vhost

 3.编辑nginx.conf加入如下一句话:

include vhost/*.conf;

 然后保存

4.进入vhost文件夹中建立你需要的二级域名比如我需要建立tomcat.lonecloud.cn域名则建立tomcat.lonecloud.cn.conf

加入如下配置

server {    default_type 'text/html';    charset utf-8;    listen 80;    autoindex off;    server_name tomcat.lonecloud.cn;    access_log /usr/local/nginx/logs/access.log combined;    index index.html index.htm index.jsp index.php;    #error_page 404 /404.html;    if ( $query_string ~* ".*[\;'\<\>].*" ){        return 404;    }    location / {        proxy_pass http://127.0.0.1:8080/;        add_header Access-Control-Allow-Origin *;    }}

 主要的配置是在:

  listen为监听端口为80端口

  server_name设置为你需要的二级域名

  location中的proxy_pass 设置为你的tomcat的路径

 

5.重启nginx即可

 

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

你可能感兴趣的文章
Spring Security 学习之X.509认证
查看>>
nginx技术(4)nginx地址重写
查看>>
Discuss about PortableRemoteObject.narrow()
查看>>
用SHELL脚本自动化安装Nagios服务器端和客户端的
查看>>
System Center 2012 R2 CM系列之配置configuration manager防火墙设置
查看>>
我的CSS命名规则
查看>>
Configuration Manager 2012 R2系统需求
查看>>
OMF添加在线日志_OCP学习笔记(4)
查看>>
【Vue】详解Vue生命周期
查看>>
MySQL数据库无法启动的简单排错
查看>>
虚拟化技术在企业中的实际应用
查看>>
Unity3D面试题汇总
查看>>
JAVA多线程之中断机制(如何处理中断?)
查看>>
Azure 基础:Blob Storage
查看>>
PLSQL Developer中test window的使用
查看>>
使用RMAN恢复目录(catalog)解析
查看>>
Android -- tools
查看>>
Oracle的卸载过程步骤
查看>>
警告框(AlertView)与进度轮结合使用
查看>>
Redis Sentinel实现的机制与原理详解
查看>>