为nginx服务配置虚拟主机,新增两个域名 www.kgc.com 和 www.benet.com,使用http://www.kgc.com/index.php可访问上一题的Discuz论坛页面。
时间: 2023-12-10 14:04:17 浏览: 134
要为nginx服务配置虚拟主机,需要进行以下步骤:
1. 在服务器上创建两个网站目录,例如/var/www/kgc和/var/www/benet。
2. 在nginx的配置文件中添加以下内容:
```
server {
listen 80;
server_name www.kgc.com;
root /var/www/kgc;
index index.php;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
server {
listen 80;
server_name www.benet.com;
root /var/www/benet;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}
```
3. 重启nginx服务,使配置生效。
现在,你可以通过访问http://www.kgc.com/index.php来访问Discuz论坛页面,通过访问http://www.benet.com来访问另一个网站。
阅读全文