我有Apache(听8888)和Nginx(听80)。
在nginx.conf中
location ~ \.php$ {
root /var/www/web/;
ssi on;
proxy_pass http://127.0.0.1:8888;
}
在apache conf中
<VirtualHost *:8888>
LogLevel info
ServerName testserver.localhost
DocumentRoot /var/www/web/
<Directory /var/www/web>
AllowOverride none
DirectoryIndex index.php
AddType application/x-httpd-php .php
</Directory>
</VirtualHost>
我想要两个切入点。
我需要在nginx.conf和apache conf中进行哪些更改?