ensuring that container can run read-only and logs are forwarded to docker logs, fixes for latest alpine and cleanup

This commit is contained in:
El RIDO
2018-06-05 06:55:45 +02:00
parent d8a9f45cb2
commit cf7d8e1e48
7 changed files with 49 additions and 31 deletions

View File

@@ -12,8 +12,8 @@ http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log off;
error_log /var/log/nginx/error.log error;
access_log /dev/stdout;
error_log /dev/stderr error;
sendfile on;
keepalive_timeout 15;
@@ -47,14 +47,14 @@ http {
image/svg+xml;
server {
listen 80;
root /privatebin;
index index.php index.html;
listen 80;
root /privatebin;
index index.php index.html;
location ~* \.(jpg|jpeg|gif|css|png|js|map|woff|woff2|ttf|svg|eot)$ {
expires 30d;
access_log off;
}
location ~* \.(jpg|jpeg|gif|css|png|js|map|woff|woff2|ttf|svg|eot)$ {
expires 30d;
access_log off;
}
location ~ ^/(data|cfg|tmp) {
deny all;
@@ -68,17 +68,15 @@ http {
deny all;
}
location / {
try_files $uri $uri/ /index.php;
}
location ~ \.php$ {
fastcgi_index index.php;
fastcgi_pass unix:/var/run/php-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;
}
location / {
try_files $uri $uri/ /index.php;
}
location ~ \.php$ {
fastcgi_index index.php;
fastcgi_pass unix:/var/run/php-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;
}
}
}