aboutsummaryrefslogtreecommitdiffhomepage
path: root/docker/production/stable/nginx.conf
diff options
context:
space:
mode:
authorVirtualTam <virtualtam@flibidi.net>2015-12-24 17:17:46 +0100
committerVirtualTam <virtualtam@flibidi.net>2016-01-02 19:01:33 +0100
commit453f4653c325dc23193e16432170bf634c42e8a2 (patch)
treee74568a125834e977725fe992f458e7739d2c57a /docker/production/stable/nginx.conf
parent0baf7842fc0cf4cbd5ca2b8c5ae6dc7a59c07700 (diff)
downloadShaarli-453f4653c325dc23193e16432170bf634c42e8a2.tar.gz
Shaarli-453f4653c325dc23193e16432170bf634c42e8a2.tar.zst
Shaarli-453f4653c325dc23193e16432170bf634c42e8a2.zip
Docker: move Dockerfiles to the main repository
Relates to #420 Fixes: - [all] remove Nginx' 'server_name' attribute - [dev] create the phpinfo() script from the Dockerfile Modifications: - [all] remove documentation/guide (to be added to the wiki) - [all] update maintainer information - [prod] differentiate 'master' (:latest) and 'stable' (:stable) images Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'docker/production/stable/nginx.conf')
-rw-r--r--docker/production/stable/nginx.conf56
1 files changed, 56 insertions, 0 deletions
diff --git a/docker/production/stable/nginx.conf b/docker/production/stable/nginx.conf
new file mode 100644
index 00000000..e23c4587
--- /dev/null
+++ b/docker/production/stable/nginx.conf
@@ -0,0 +1,56 @@
1user www-data www-data;
2daemon off;
3worker_processes 4;
4
5events {
6 worker_connections 768;
7}
8
9http {
10 include mime.types;
11 default_type application/octet-stream;
12 keepalive_timeout 20;
13
14 index index.html index.php;
15
16 server {
17 listen 80;
18 root /var/www/shaarli;
19
20 access_log /var/log/nginx/shaarli.access.log;
21 error_log /var/log/nginx/shaarli.error.log;
22
23 location ~ /\. {
24 # deny access to dotfiles
25 access_log off;
26 log_not_found off;
27 deny all;
28 }
29
30 location ~ ~$ {
31 # deny access to temp editor files, e.g. "script.php~"
32 access_log off;
33 log_not_found off;
34 deny all;
35 }
36
37 location ~* \.(?:ico|css|js|gif|jpe?g|png)$ {
38 # cache static assets
39 expires max;
40 add_header Pragma public;
41 add_header Cache-Control "public, must-revalidate, proxy-revalidate";
42 }
43
44 location ~ (index)\.php$ {
45 # filter and proxy PHP requests to PHP-FPM
46 fastcgi_pass unix:/var/run/php5-fpm.sock;
47 fastcgi_index index.php;
48 include fastcgi.conf;
49 }
50
51 location ~ \.php$ {
52 # deny access to all other PHP scripts
53 deny all;
54 }
55 }
56}