blob: addc763cd9643656188539ec17eaf2604cf14d36 [file] [log] [blame]
Nico Huber8cd50ee2023-06-24 15:35:16 +00001server {
2 listen 0.0.0.0:80;
3
4 server_name id.miau.local;
5
6 root /var/www/html;
7 location / {
8 index index.php index.html;
9 }
10 location ~ \.php$ {
11 include fastcgi_params;
12 fastcgi_pass simpleid:9000;
13 fastcgi_index index.php;
14 fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
15 }
16}