summarylogtreecommitdiffstats
path: root/nginx.example.conf
blob: 2d0f80257c2a6cc32d707eb81936f4c3fb83d69a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
server {
        listen 80;
        server_name users.example.org;
        root /usr/share/webapps/ldap-account-manager;

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

        location / {
           index index.html;
        }
}