diff --git a/nginx.conf b/nginx.conf
new file mode 100644
index 0000000000000000000000000000000000000000..04f30f08a46f232616cdb0ef1714e2c972cd8644
--- /dev/null
+++ b/nginx.conf
@@ -0,0 +1,12 @@
+server {
+        listen 80 default_server;
+        listen [::]:80 default_server;
+        root /var/www/html;
+        index index.html index.htm index.php;
+        error_page 404 = /404.html;
+        location ~ \.php$ {
+              fastcgi_pass      127.0.0.1:9000;
+              fastcgi_index     index.php;
+              include           fastcgi.conf;
+        }
+}
\ No newline at end of file