[skip ci] WIP Nginx config

Nginx container starts with current config in testconfig.yaml
This commit is contained in:
erik 2022-09-09 17:32:28 +02:00
parent 6c8e63cb52
commit 24da81f789
5 changed files with 91 additions and 123 deletions

View file

@ -1,12 +1,3 @@
# ToDo:
# Roadmap aufsetzen
# Minigoal: run nginx server, serving a simple static site
# get correct config for static website
# security
# paths to rootfolder correctly defined
# volumes correctly defined
# nginx can access volumes
#
apiVersion: v1 apiVersion: v1
kind: ConfigMap kind: ConfigMap
metadata: metadata:
@ -20,7 +11,7 @@ data:
error_log /var/log/nginx/error.log; error_log /var/log/nginx/error.log;
pid logs/nginx.pid; pid /var/log/nginx/nginx.pid;
worker_rlimit_nofile 8192; worker_rlimit_nofile 8192;
@ -28,10 +19,11 @@ data:
worker_connections 4096; ## Default: 1024 worker_connections 4096; ## Default: 1024
} }
daemon off; # run in foreground # daemon off; # run in foreground
http { http {
include conf/mime.types;
include /etc/nginx/mime.types; # should be replaced by c4k
default_type application/octet-stream; default_type application/octet-stream;
@ -39,7 +31,7 @@ data:
'"$request" $body_bytes_sent "$http_referer" ' '"$request" $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"'; '"$http_user_agent" "$http_x_forwarded_for"';
access_log logs/access.log main; access_log /var/log/nginx/access.log main;
sendfile on; sendfile on;
@ -52,7 +44,7 @@ data:
# it might be a good idea to set a common reverse proxy # it might be a good idea to set a common reverse proxy
# which points to the ingress? # which points to the ingress?
include /etc/nginx/conf.d/FQDN.conf # should be replaced by c4k include /etc/nginx/conf.d/repo.test.meissa.de.conf; # should be replaced by c4k
} }
mime.types: | mime.types: |
@ -104,14 +96,14 @@ data:
video/x-ms-asf asx asf; video/x-ms-asf asx asf;
video/x-mng mng; video/x-mng mng;
} }
FQDN.conf: | repo.test.meissa.de.conf: |
server { server {
listen 80 default_server; listen 80 default_server;
listen [::]:80 default_server; listen [::]:80 default_server;
server_name FQDN www.FQDN; server_name repo.test.meissa.de www.repo.test.meissa.de;
# security headers # security headers
add_header Strict-Transport-Security 'max-age=31536000; includeSubDomains; preload'; add_header Strict-Transport-Security 'max-age=31536000; includeSubDomains; preload';
@ -123,11 +115,10 @@ data:
# maybe need to add: # maybe need to add:
# add_header Permissions-Policy "permissions here"; # add_header Permissions-Policy "permissions here";
root WEBSITECONTENTPATH; root /var/www/html/repo.test.meissa.de;
index index.html; index index.html;
try_files $uri /index.html; try_files $uri /index.html;
} }

View file

@ -15,7 +15,7 @@ spec:
containers: containers:
- name: nginx - name: nginx
image: nginx:latest image: nginx:latest
imagePullPolicy: IfNotPresent imagePullPolicy: "Always"
ports: ports:
- containerPort: 80 - containerPort: 80
volumeMounts: volumeMounts:
@ -24,7 +24,7 @@ spec:
name: nginx-conf name: nginx-conf
- mountPath: /var/log/nginx - mountPath: /var/log/nginx
name: log name: log
- mountPath: /var/www/html/FQDN - mountPath: /var/www/html/repo.test.meissa.de
name: website-content-volume name: website-content-volume
volumes: volumes:
- name: nginx-conf - name: nginx-conf
@ -32,14 +32,14 @@ spec:
name: nginx-conf # place ConfigMap `nginx-conf` on /etc/nginx name: nginx-conf # place ConfigMap `nginx-conf` on /etc/nginx
items: items:
- key: nginx.conf - key: nginx.conf
path: conf.d/nginx.conf path: nginx.conf
- key: FQDN.conf - key: repo.test.meissa.de.conf
path: conf.d/nginx.conf path: conf.d/repo.test.meissa.de.conf
- key: mime.types - key: mime.types
path: mime.d/mime.types # dig directory path: mime.types # dig directory
- name: log - name: log
emptyDir: {} emptyDir: {}
- name: website-content-volume - name: website-content-volume
persistentVolumeClaim: persistentVolumeClaim:
claimName: website-content-pvc claimName: website-content-pvc
---

View file

@ -3,14 +3,10 @@ apiVersion: v1
metadata: metadata:
name: nginx-service name: nginx-service
namespace: default namespace: default
annotations:
metallb.universe.tf/allow-shared-ip: "shared-ip-service-group"
spec: spec:
type: LoadBalancer type: LoadBalancer
selector: selector:
app: nginx app: nginx
ports: ports:
- port: 80 - name: website
targetPort: 80 port: 80
protocol: TCP

View file

@ -1,16 +1,52 @@
# ToDo: apiVersion: apps/v1
# Roadmap aufsetzen kind: Deployment
# Minigoal: run nginx server, serving a simple static site metadata:
# get correct config for static website name: nginx
# security spec:
# paths to rootfolder correctly defined replicas: 1
# volumes correctly defined selector:
# nginx can access volumes matchLabels:
# app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:latest
imagePullPolicy: "Always"
ports:
- containerPort: 80
volumeMounts:
- mountPath: /etc/nginx # mount nginx volume to /etc/nginx
readOnly: true
name: nginx-conf
- mountPath: /var/log/nginx
name: log
- mountPath: /var/www/html/repo.test.meissa.de
name: website-content-volume
volumes:
- name: nginx-conf
configMap:
name: nginx-conf # place ConfigMap `nginx-conf` on /etc/nginx
items:
- key: nginx.conf
path: nginx.conf
- key: repo.test.meissa.de.conf
path: conf.d/repo.test.meissa.de.conf
- key: mime.types
path: mime.types # dig directory
- name: log
emptyDir: {}
- name: website-content-volume
persistentVolumeClaim:
claimName: website-content-pvc
---
apiVersion: v1 apiVersion: v1
kind: ConfigMap kind: ConfigMap
metadata: metadata:
name: nginx-env name: nginx-conf
namespace: default namespace: default
data: data:
nginx.conf: | nginx.conf: |
@ -20,7 +56,7 @@ data:
error_log /var/log/nginx/error.log; error_log /var/log/nginx/error.log;
pid logs/nginx.pid; pid /var/log/nginx/nginx.pid;
worker_rlimit_nofile 8192; worker_rlimit_nofile 8192;
@ -28,10 +64,11 @@ data:
worker_connections 4096; ## Default: 1024 worker_connections 4096; ## Default: 1024
} }
daemon off; # run in foreground # daemon off; # run in foreground
http { http {
include conf/mime.types;
include /etc/nginx/mime.types; # should be replaced by c4k
default_type application/octet-stream; default_type application/octet-stream;
@ -39,7 +76,7 @@ data:
'"$request" $body_bytes_sent "$http_referer" ' '"$request" $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"'; '"$http_user_agent" "$http_x_forwarded_for"';
access_log logs/access.log main; access_log /var/log/nginx/access.log main;
sendfile on; sendfile on;
@ -52,7 +89,7 @@ data:
# it might be a good idea to set a common reverse proxy # it might be a good idea to set a common reverse proxy
# which points to the ingress? # which points to the ingress?
include /etc/nginx/conf.d/repo.test.meissa.de.conf # should be replaced by c4k include /etc/nginx/conf.d/repo.test.meissa.de.conf; # should be replaced by c4k
} }
mime.types: | mime.types: |
@ -131,75 +168,6 @@ data:
} }
--- ---
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx
spec:
replicas: 1
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:latest
ports:
- containerPort: 80
volumeMounts:
- mountPath: /etc/nginx # mount nginx volume to /etc/nginx
readOnly: true
name: nginx-conf
- mountPath: /var/log/nginx
name: log
- mountPath: /var/www/html/repo.test.meissa.de
name: website-content-volume
volumes:
- name: nginx-conf
configMap:
name: nginx-conf # place ConfigMap `nginx-conf` on /etc/nginx
items:
- key: nginx.conf
path: conf.d/nginx.conf
- key: repo.test.meissa.de.conf
path: conf.d/repo.test.meissa.de.conf
- key: mime.types
path: mime.d/mime.types # dig directory
- name: log
emptyDir: {}
- name: website-content-volume
persistentVolumeClaim:
claimName: website-content-pvc
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: nginx-ingress
namespace: default
annotations:
ingress.kubernetes.io/ssl-redirect: "true"
traefik.ingress.kubernetes.io/router.middlewares: default-redirect-https@kubernetescrd
spec:
tls:
- hosts:
- repo.test.meissa.de
secretName: website-cert
rules:
- host: repo.test.meissa.de
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: nginx-service
port:
number: 3000
---
kind: Service kind: Service
apiVersion: v1 apiVersion: v1
metadata: metadata:
@ -210,6 +178,20 @@ spec:
selector: selector:
app: nginx app: nginx
ports: ports:
- port: 80 - name: websie
targetPort: 80 port: 80
protocol: TCP ---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: website-content-pvc
namespace: default
labels:
app: nginx
spec:
storageClassName: local-path
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 5Gi

View file

@ -4,7 +4,7 @@ metadata:
name: website-content-pvc name: website-content-pvc
namespace: default namespace: default
labels: labels:
app: website app: nginx
spec: spec:
storageClassName: local-path storageClassName: local-path
accessModes: accessModes:
@ -12,4 +12,3 @@ spec:
resources: resources:
requests: requests:
storage: DATASTORAGESIZE storage: DATASTORAGESIZE