provisioning tool for building opinionated architecture
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.

16 lines
338 B

1 month ago
  1. server {
  2. listen {{ env.APP_PORT }};
  3. server_name localhost;
  4. root /var/www/limesurvey/{{ env.APP_NAME }};
  5. index index.php;
  6. location / {
  7. try_files $uri $uri/ /index.php?$args;
  8. }
  9. location ~ \.php$ {
  10. include snippets/fastcgi-php.conf;
  11. fastcgi_pass unix:/var/run/php/php-fpm.sock;
  12. }
  13. }