Sou novo no Nginx, mas estava interessado em testá-lo.
Agora tenho o Nginx ouvindo a porta 80 e servindo conteúdo estático de html de / srv / www para um "site promocional" principal. Também configurei o apache2 para o conteúdo de exibição do mesmo local para localhost: 8080. Sob esse local eu tenho uma pasta chamada beta que contém uma instalação do Drupal que eu gostaria de servir com o Apache em vez do Nginx.
Consegui configurar o Nginx com sucesso para que as solicitações enviadas para example.com/beta sejam atendidas pelo Apache e os arquivos estejam corretamente visíveis no navegador, exceto para qualquer arquivo php relacionado ao Drupal. info.php ( <?php phpinfo(); ?>
) também funciona. Para qualquer um dos arquivos php relacionados ao Drupal, recebo um erro padrão 500.
Meus arquivos de configuração para o apache e o nginx abaixo:
Apache:
<VirtualHost 127.0.0.1:8080>
ServerAdmin webmaster@localhost
DocumentRoot /srv/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /srv/www>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
AddType application/x-httpd-php .php
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
Nginx:
server {
#listen 80; ## listen for ipv4; this line is default and implied
#listen [::]:80 default ipv6only=on; ## listen for ipv6
root /usr/share/nginx/www;
index index.html index.php index.htm;
# Make site accessible from http://localhost/
server_name example.com;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to index.html
try_files $uri $uri/ /index.html;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
deny all;
}
#THIS BIT IS FOR DRUPAL
location ~ ^/beta {
proxy_pass http://127.0.0.1:8080;
include /etc/nginx/proxy_params;
index index.php index.html index.htm;
}
}