nginx.conf 293 B

123456789101112
  1. location /hauk {
  2. root /var/www/hauk;
  3. index index.html index.htm;
  4. }
  5. location ~ \.php$ {
  6. root /var/www;
  7. fastcgi_pass 127.0.0.1:9000;
  8. fastcgi_index index.php;
  9. fastcgi_param SCRIPT_FILENAME /var/www/hauk$fastcgi_script_name;
  10. include fastcgi_params;
  11. }