server { listen 80; server_name localhost; root /var/www/html/aplicativo; index index.php index.html; #charset koi8-r; #access_log /var/log/nginx/log/host.access.log main; location /gravacoes { alias /var/spool/asterisk/monitor; } location /downloads { alias /hdaux/downloads; autoindex on; } location /agenda { alias /var/www/html/agenda; } location / { index index.php index.html; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root /var/www/html; } # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 location ~ /agenda/.*\.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name; include fastcgi_params; } location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_read_timeout 600; include fastcgi_params; } }