diff --git a/home/Dockerfile b/home/Dockerfile index f7459af..b446e19 100644 --- a/home/Dockerfile +++ b/home/Dockerfile @@ -1,3 +1,3 @@ FROM nginx:alpine COPY ./site /usr/share/nginx/html -COPY ./config/nginx.conf /etc/nginx/conf.d/default.conf +COPY ./config/default.conf /etc/nginx/conf.d/default.conf diff --git a/home/config/default.conf b/home/config/default.conf new file mode 100644 index 0000000..1203a64 --- /dev/null +++ b/home/config/default.conf @@ -0,0 +1,47 @@ +server { + listen 80; + listen [::]:80; + server_name localhost; + + #access_log /var/log/nginx/host.access.log main; + + location / { + root /usr/share/nginx/html; + index index.html index.htm; + add_header 'Cache-Control' "public, max-age=604800"; + add_header stale-while-revalidate 900; + add_header stale-if-error 2592000; + } + + #error_page 404 /404.html; + + # redirect server error pages to the static page /50x.html + # + error_page 500 502 503 504 /50x.html; + location = /50x.html { + root /usr/share/nginx/html; + } + + # proxy the PHP scripts to Apache listening on 127.0.0.1:80 + # + #location ~ \.php$ { + # proxy_pass http://127.0.0.1; + #} + + # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 + # + #location ~ \.php$ { + # root html; + # fastcgi_pass 127.0.0.1:9000; + # fastcgi_index index.php; + # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; + # include fastcgi_params; + #} + + # deny access to .htaccess files, if Apache's document root + # concurs with nginx's one + # + #location ~ /\.ht { + # deny all; + #} +} diff --git a/home/config/nginx.conf b/home/config/nginx.conf deleted file mode 100644 index ca4b287..0000000 --- a/home/config/nginx.conf +++ /dev/null @@ -1,40 +0,0 @@ - -user nginx; -worker_processes auto; - -error_log /var/log/nginx/error.log notice; -pid /var/run/nginx.pid; - - -events { - worker_connections 1024; -} - -location / { - add_header Cache-Control "max-age=604800"; - add_header stale-while-revalidate 900; - add_header stale-if-error 2592000; - root /usr/share/nginx/html; - index index.html index.htm; -} - - -http { - include /etc/nginx/mime.types; - default_type application/octet-stream; - - log_format main '$remote_addr - $remote_user [$time_local] "$request" ' - '$status $body_bytes_sent "$http_referer" ' - '"$http_user_agent" "$http_x_forwarded_for"'; - - access_log /var/log/nginx/access.log main; - - sendfile on; - #tcp_nopush on; - - keepalive_timeout 65; - - #gzip on; - - include /etc/nginx/conf.d/*.conf; -}