summaryrefslogtreecommitdiff
path: root/contrib/nginx
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-08-12 16:23:35 +0200
committermsquare <msquare@notrademark.de>2018-08-19 16:44:33 +0200
commit8ed3ed3a77a46997e5afa8915bb9ee77c8caf249 (patch)
tree3a5ab54b2c0e0b1a3a45ef469604ef86df7f4664 /contrib/nginx
parentd7ba51b3ecea3d6be6dc80677aa8d92a301109f1 (diff)
Moved docker files to contrib, added documentation
Diffstat (limited to 'contrib/nginx')
-rw-r--r--contrib/nginx/Dockerfile2
-rw-r--r--contrib/nginx/nginx.conf35
2 files changed, 37 insertions, 0 deletions
diff --git a/contrib/nginx/Dockerfile b/contrib/nginx/Dockerfile
new file mode 100644
index 00000000..a06ea3e7
--- /dev/null
+++ b/contrib/nginx/Dockerfile
@@ -0,0 +1,2 @@
+FROM nginx:alpine
+COPY contrib/nginx/nginx.conf /etc/nginx/nginx.conf
diff --git a/contrib/nginx/nginx.conf b/contrib/nginx/nginx.conf
new file mode 100644
index 00000000..bbaf5824
--- /dev/null
+++ b/contrib/nginx/nginx.conf
@@ -0,0 +1,35 @@
+error_log stderr;
+events {
+ worker_connections 1024;
+}
+http {
+ client_body_temp_path /tmp/client_body_temp;
+ fastcgi_temp_path /tmp/fastcgi_temp;
+ proxy_temp_path /tmp/proxy_temp;
+ scgi_temp_path /tmp/scgi_temp;
+ uwsgi_temp_path /tmp/uwsgi_temp;
+
+ server {
+ include mime.types;
+ access_log off;
+ listen [::]:80 ipv6only=off;
+ proxy_redirect off;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ index index.php;
+ root /var/www/html;
+
+ location / {
+ try_files $uri $uri/ /index.php?$args;
+ }
+
+ location ~ \.php$ {
+ fastcgi_pass engelsystem:9000;
+ fastcgi_index index.php;
+ fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
+ fastcgi_param HTTPS on;
+ include fastcgi_params;
+ }
+ }
+}