mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-13 14:43:03 +00:00
84f2060d33
The k8s quickstart command is now functional, with suppport for https, xqueue, notes and minio. There are still a few bugs to get rid of, though.
36 lines
981 B
Plaintext
36 lines
981 B
Plaintext
# MinIO public service
|
|
upstream minio-backend {
|
|
server minio:9000 fail_timeout=0;
|
|
}
|
|
{% if ACTIVATE_HTTPS %}
|
|
server {
|
|
server_name {{ MINIO_HOST }};
|
|
listen 80;
|
|
return 301 https://$server_name$request_uri;
|
|
}
|
|
{% endif %}
|
|
server {
|
|
{% if ACTIVATE_HTTPS %}listen 443 {{ "" if WEB_PROXY else "ssl" }};{% else %}listen 80;{% endif %}
|
|
server_name minio.localhost {{ MINIO_HOST }};
|
|
|
|
{% if ACTIVATE_HTTPS and not WEB_PROXY %}
|
|
ssl_certificate /etc/letsencrypt/live/{{ MINIO_HOST }}/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/{{ MINIO_HOST }}/privkey.pem;
|
|
{% endif %}
|
|
|
|
# Disables server version feedback on pages and in headers
|
|
server_tokens off;
|
|
|
|
client_max_body_size 0;
|
|
|
|
location / {
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_set_header X-Forwarded-Port $server_port;
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
proxy_set_header Host $http_host;
|
|
proxy_redirect off;
|
|
|
|
proxy_pass http://minio-backend;
|
|
}
|
|
}
|