Nico Huber | 8cd50ee | 2023-06-24 15:35:16 +0000 | [diff] [blame^] | 1 | server { |
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 | } |