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;
+    }
+}