commit | 8cd50eecd512d24689718ca0e61ab6c4c6df3005 | [log] [tgz] |
---|---|---|
author | Nico Huber <nico.h@gmx.de> | Sat Jun 24 15:35:16 2023 +0000 |
committer | Nico Huber <nico.h@gmx.de> | Sat Jul 01 15:41:48 2023 +0000 |
tree | ec071042312342bd719ddcf378048505027c9996 | |
parent | 4de46d1dcffab190f0c41db45592a0defe58d69f [diff] [blame] |
Add basic simpleid configuration
diff --git a/nginx/sa.conf b/nginx/sa.conf new file mode 100644 index 0000000..addc763 --- /dev/null +++ b/nginx/sa.conf
@@ -0,0 +1,16 @@ +server { + listen 0.0.0.0:80; + + server_name id.miau.local; + + root /var/www/html; + location / { + index index.php index.html; + } + location ~ \.php$ { + include fastcgi_params; + fastcgi_pass simpleid:9000; + fastcgi_index index.php; + fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name; + } +}