我正在寻求一些帮助,以便在切换实际 DNS 之前为 nginx 配置我的 .conf 文件以指向域进行测试。
我有以下内容:
- Maindomain.com 运行 WordPress 安装
- comingsoon.com 在下面列出的目录中运行一个基本的 PHP 站点。
我想访问诸如 maindomain.com/comingsoon 之类的 url 上的comingsoon.com 内容
我觉得我走在正确的轨道上,但是当我得到 404 时可能会遗漏一些东西。
这是我的conf文件:
server {
server_name maindomain.com;
root /var/www/maindomain.com/public/;
listen 8080;
index index.html index.htm index.php;
location / {
try_files $uri $uri/ /index.php?q=$uri&$args;
}
location /comingsoon {
root /var/www/comingsoon.com/public/;
index index.html index.htm index.php;
}
location ~ \.php$ {
fastcgi_intercept_errors on;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass unix:/dev/shm/php-fpm-www.sock;
}
}