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.

14 lines
325 B

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