1
Fork 0

Remove docker config

We're on GitLab pages now!
This commit is contained in:
Jake Howard 2020-10-09 21:51:58 +01:00
parent 86dff22e02
commit 66b59781d5
Signed by: jake
GPG key ID: 57AFB45680EDD477
4 changed files with 0 additions and 106 deletions

View file

@ -1,4 +0,0 @@
public/
resources/
node_modules/
.cache/

View file

@ -1,26 +0,0 @@
# Site Build
FROM node:lts-slim as build
ENV NODE_ENV production
ENV HUGO_VERSION=0.73.0
WORKDIR /app
RUN apt-get update && apt-get install -y ca-certificates
COPY . /app
RUN npm ci --production
ADD https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.deb /tmp/hugo.deb
RUN dpkg -i /tmp/hugo.deb
RUN ./scripts/release.sh
# Production run
FROM nginx:stable-alpine
COPY nginx.conf /etc/nginx/nginx.conf
COPY --from=build /app/public/ /usr/share/nginx/html

View file

@ -1,11 +0,0 @@
version: "2.3"
services:
website:
build:
context: .
volumes:
- "./public:/usr/share/nginx/html:ro"
- "./nginx.conf:/etc/nginx/nginx.conf:ro"
ports:
- "80:80"

View file

@ -1,65 +0,0 @@
user nginx;
worker_processes auto;
error_log stderr;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
access_log /dev/stdout;
server_tokens off;
sendfile on;
keepalive_timeout 65;
gzip on;
gzip_static on;
gzip_types *;
server {
listen 80;
server_name theorangeone.net;
root /usr/share/nginx/html;
index index.html;
set_real_ip_from 0.0.0.0/0;
real_ip_header X-Forwarded-For;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Content-Type-Options "nosniff";
add_header Referrer-Policy "same-origin";
add_header Strict-Transport-Security "max-age=5184000";
location /ping {
return 200 "PONG";
}
location ~* \.(png|jpg|gif|svg|txt|css|js|xml|eot|ttf|woff2|woff)$ {
add_header Cache-Control "public, max-age=0, must-revalidate";
}
location = /favicon.ico {
return 302 /img/logo-transparent.png;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
}
server {
listen 80;
server_name www.theorangeone.net;
return 303 $scheme://theorangeone.net$request_uri;
}
}