You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default.conf 370B

12345678910111213141516
  1. server {
  2. listen 80;
  3. index index.php index.html;
  4. root /var/www/public;
  5. location / {
  6. try_files $uri $uri/ /index.php?$query_string;
  7. }
  8. location ~ \.php$ {
  9. fastcgi_pass pasca-app:9000;
  10. fastcgi_index index.php;
  11. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  12. include fastcgi_params;
  13. }
  14. }