nginx根据域名配置虚拟主机 博客分类: nginx nginx
程序员文章站
2024-03-18 14:06:16
...
在配置文件的server段配置server_name参数,
然后再操作系统的ip映射文件加上
http { server { server_name www.a.com; root /data/webroot/publica; ..... } server { server_name localhost 127.0.0.1 *.b.com root /data/webroot/publicb; } }
然后再操作系统的ip映射文件加上
127.0.0.1 www.a.com 127.0.0.1 www.b.com
推荐阅读
-
nginx根据域名配置虚拟主机 博客分类: nginx nginx
-
实现基于nginx的tomcat负载均衡和集群配置 博客分类: 实战技术 nginxtomcatmemcached
-
linux下nginx安装,启动,停止,卸载,平滑升级,添加模块 博客分类: nginx nginx安装启动停止添加模块
-
nginx性能优化配置长连接 博客分类: nginx nginx性能优化长连接
-
nginx上传模块下载安装 博客分类: nginx nginx上传upload
-
nginx日志文件切割 博客分类: nginx nginx日志切割
-
nginx设置worker_processes,worker_connections,worker_rlimit_nofile 博客分类: nginx nginxworker_processesworker_connectionsworker_rlimit_nofile
-
Nginx配置SSI 博客分类: nginx nginxssi
-
nginx 反向代理超时upstream timed out 解决办法 博客分类: nginx nginx代理超时upstreamtimeout
-
Nginx 开启 stub_status 模块监控 博客分类: nginx nginxnginx-statusstub_status监控