feat(k8s/archmirror): add Arch Linux mirror stack
This commit is contained in:
38
kubernetes/app/archmirror/configmap-nginx.yaml
Normal file
38
kubernetes/app/archmirror/configmap-nginx.yaml
Normal file
@@ -0,0 +1,38 @@
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: archmirror-nginx-config
|
||||
namespace: archmirror
|
||||
data:
|
||||
nginx.conf: |
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
http {
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
sendfile on;
|
||||
gzip on;
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
root /usr/share/nginx/html;
|
||||
|
||||
location /archlinux/ {
|
||||
alias /usr/share/nginx/html/archlinux/;
|
||||
autoindex on;
|
||||
}
|
||||
|
||||
location = / {
|
||||
return 301 /archlinux/;
|
||||
}
|
||||
|
||||
location /health {
|
||||
return 200 "OK\n";
|
||||
add_header Content-Type text/plain;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user