Update nginx deployment so it actually works
This commit is contained in:
parent
69af1ada30
commit
4c9ea09445
@ -3,14 +3,15 @@ RUN pip install mkdocs
|
|||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY . /app
|
COPY . /app
|
||||||
ENV SITE_DIR=/app/site
|
ENV SITE_DIR=/app/site
|
||||||
RUN mkdocs build --clean -d $SITE_DIR
|
RUN mkdocs build -d $SITE_DIR
|
||||||
|
|
||||||
|
|
||||||
FROM git.fjla.uk/fred.boniface/web-deploy:latest as compressor
|
FROM git.fjla.uk/fred.boniface/web-deploy:0.0.2 as compressor
|
||||||
COPY --from=builder /app/site/ /deploy/in/
|
COPY --from=builder /app/site/ /deploy/in/
|
||||||
RUN node /app/process.js
|
RUN node /app/process.js
|
||||||
|
|
||||||
FROM nginx:alpine
|
FROM georgjung/nginx-brotli:mainline-alpine
|
||||||
RUN rm -rf /usr/share/nginx/html/*
|
RUN rm -rf /usr/share/nginx/html/* && rm -f /etc/nginx/nginx.conf
|
||||||
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|
||||||
COPY --from=compressor /deploy/out/ /usr/share/nginx/html/
|
COPY --from=compressor /deploy/out/ /usr/share/nginx/html/
|
||||||
EXPOSE 80
|
EXPOSE 80
|
@ -1,5 +1,6 @@
|
|||||||
site_name: OwlBoard Documentation
|
site_name: OwlBoard Documentation
|
||||||
theme: readthedocs
|
theme: readthedocs
|
||||||
|
site_url: https://docs.owlboard.info
|
||||||
|
|
||||||
nav:
|
nav:
|
||||||
- 'Go to OwlBoard': https://owlboard.info
|
- 'Go to OwlBoard': https://owlboard.info
|
||||||
|
45
nginx.conf
Normal file
45
nginx.conf
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
load_module modules/ngx_http_brotli_static_module.so;
|
||||||
|
|
||||||
|
user nginx;
|
||||||
|
worker_processes auto;
|
||||||
|
|
||||||
|
error_log /var/log/nginx/error.log notice;
|
||||||
|
pid /var/run/nginx.pid;
|
||||||
|
|
||||||
|
|
||||||
|
events {
|
||||||
|
worker_connections 1024;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
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 /dev/stdout main;
|
||||||
|
|
||||||
|
sendfile on;
|
||||||
|
|
||||||
|
keepalive_timeout 65;
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
server_name localhost;
|
||||||
|
|
||||||
|
add_header Content-Security-Policy "default-src 'self'";
|
||||||
|
|
||||||
|
location / {
|
||||||
|
root /usr/share/nginx/html;
|
||||||
|
index index.html;
|
||||||
|
gzip_static on;
|
||||||
|
brotli_static on;
|
||||||
|
error_page 404 /404.html;
|
||||||
|
add_header Cache-Control "public, max-age=604800";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user