forked from Botanical/BotanJS
26 lines
538 B
YAML
26 lines
538 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: astrojs-nginx-ctmpls
|
|
namespace: default
|
|
data:
|
|
default.conf.template: |
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name localhost;
|
|
|
|
expires 10d;
|
|
add_header Cache-Control "public";
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
}
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
root /usr/share/nginx/html;
|
|
}
|
|
}
|