Apache和Nginx虚拟主机的创建
admin
2023-03-02 08:42:14
0

一、Apache

  (1)基于访问主机头(FQDN)


cat /etc/httpd/conf.d/vhostfqdn.conf 

	documentroot /data/web01
	servername www.web01.com
	
		require all granted
	
	CustomLog "logs/a_access_log" combined



	documentroot /data/web02
	servername www.web02.com
	
		require all granted
	
	CustomLog "logs/a_access_log" combined



	documentroot /data/web03
	servername www.web03.com
	
		require all granted
	
	CustomLog "logs/a_access_log" combined


(2)基于ip地址


cat /etc/httpd/conf.d/vhostip.conf 

	documentroot /data/web01
	
		require all granted
	



	documentroot /data/web02
	
		require all granted
	



	documentroot /data/web03
	
		require all granted
	


(3)基于端口号

cat  /etc/httpd/conf.d/vhostport.conf 
listen 8001
listen 8002
listen 8003


	documentroot /data/web01
	
		require all granted
	




	documentroot /data/web02
	
     		require all granted
	



	documentroot /data/web03
	
		require all granted
	




二、Nginx

(1)基于域名且不同站点


 server {
         listen       80;
         server_name  mobile.magedu.com;
         location / {
             root   html;
             index  index.html index.htm;
         }
         location /python {
             root   /mobile;        !!!必须在/mobile目录下创建/python目录,且把文件写入python目录中,否则会报错!!!
             index  index.html index.htm;
         }
         location /java {
             root   /mobile;
             index  index.html index.htm;
         }
     }
 server {
         listen       80;
         server_name  www.magedu.com;
         location / {
             root   html;
             index  index.html index.htm;
         }
         location /python {
             root   /www;
             index  index.html index.htm;
         }
         location /java {
             root   /www;
             index  index.html index.htm;
         }
     }


相关内容

热门资讯

榴莲遭“仅退款”,商家花500... 极目新闻记者 王鹏2026年5月7日,河南濮阳一冷冻榴莲果肉商家反映,自己遭遇山东德州买家恶意“仅退...
4只皮皮虾1035元店主事发次... 近日,有网友反映其5月4日在三亚一家海鲜店宵夜时仅4只皮皮虾就花费1035元,价格过高,质疑店家存在...
分析师称《GTA6》发售主机或... IT之家 5 月 8 日消息,据游戏媒体 Insider Gaming 昨天报道,Circana 分...
利拓光电取得高稳定性激光器封装... 国家知识产权局信息显示,深圳市利拓光电有限公司取得一项名为“一种高稳定性激光器的封装结构”的专利,授...
别被“120W闪充”骗了:央视... 【太平洋科技快讯】央视新闻近期调查发现,市面上大量标称120W、66W的快充头存在严重功率虚标问题,...
古巴政府:美国新一轮制裁措施是... 新华社哈瓦那5月7日电 古巴外交部7日发布公告说,美国对古巴新一轮制裁措施是“经济侵略”行为,企图制...
邮轮暴发汉坦病毒疫情,世卫确认... 据凤凰卫视报道,大西洋邮轮“洪迪厄斯”号暴发汉坦病毒疫情,世界卫生组识5月7日证实,船上共有5宗确诊...
内蒙古赤峰两村半个多世纪的土地... 澎湃新闻记者 王选辉争议土地大北叉沟。本文图均为 受访者 提供备受社会关注的“赤峰两村半个多世纪的土...
冥王星5月8日开启逆行 持续约... 被“逐出”太阳系大行星序列的冥王星5月8日将结束顺行,开启为期约5个月的逆行。这也是2026年冥王星...
夸大AI功能被起诉 苹果2.5... 当地时间5月5日,因夸大AI系统“苹果智能”(Apple Intelligence)的能力,误导数百...