博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx虚拟主机配置
阅读量:5734 次
发布时间:2019-06-18

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

hot3.png

配置如下:

http {    include       mime.types;    default_type  application/octet-stream;    sendfile        on;    #tcp_nopush     on;    #keepalive_timeout  0;    keepalive_timeout  65;    #gzip  on;		    server {        listen       80;        server_name  localhost;		 root html;	 index index.html;    }		server {		listen       80;		server_name  www.test.com;	}	}
打开:c:/windows/system32/drivers/etc/hosts文件

增加:127.0.0.1 www.test.com

打开浏览器输入:www.test.com就可访问到nginx的默认页面了

你可以把多个不同的虚拟主机配置文件include进来,如:

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;    #tcp_nopush     on;    #keepalive_timeout  0;    keepalive_timeout  65;    #gzip  on;		upstream jshop.360buy.com {		server localhost:8080;	}	    server {        listen       80;        server_name  localhost;			root html;		index index.html;    }		include vhosts/www.test.com.conf;	}

转载于:https://my.oschina.net/u/571583/blog/100075

你可能感兴趣的文章
raspbian 怎么才能有声音?
查看>>
[LeetCode]22.Generate Parentheses
查看>>
WEB前端 CSS选择器
查看>>
计算A/B Test需要的样本量
查看>>
二叉树前序中序后序遍历的非递归方法
查看>>
mysql 行转列列转行
查看>>
《设计模式系列》---桥接模式
查看>>
[Unity3d]Shader 着色器 学习前了解知识
查看>>
Linux中文件颜色所代表的属性和颜色
查看>>
Redrain duilib中事件委托存在的问题
查看>>
43、我的C#学习笔记9
查看>>
网站建表实践及优化
查看>>
字符串的简单操作
查看>>
C#新功能--命名参数与可选参数
查看>>
strtok和strtok_r
查看>>
维辰超市:借助云商城成功转型新零售
查看>>
web.xml中<load-on-start>n</load-on-satrt>作用
查看>>
python之路---进程
查看>>
1061. Dating (20)
查看>>
leetcode 【 Best Time to Buy and Sell Stock II 】python 实现
查看>>