summarylogtreecommitdiffstats
path: root/nginx.example.conf
blob: 9e8d372a6a2d88c565220e87ed939669aac83af9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
server {
  listen      80;
  server_name localhost;

  root /usr/share/webapps/agendav/web/public;

  location ~\.php$ {
     try_files      $uri = 404;
     fastcgi_pass   unix::/run/php-fpm/php-fpm.sock;
     fastcgi_index  index.php;
     include        fastcgi.conf;
  }

  location / {
     try_files $uri $uri/ /index.php;
  }
}