Files
kube-wordpress/virtualinsanity/virtualinsanity-nginx-conf-cm.yaml

39 lines
973 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: virtualinsanity-nginx-conf
namespace: wordpress
data:
default.conf: |
server {
listen 80;
server_name virtualinsanity.giaco.net;
root /var/www/html;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass wordpress:9000; # Assumes 'wordpress' is the container name in the same pod
location ~ /\.ht {
deny all;
}
}
location ~* /(wp-config\.php|readme\.html|license\.txt) {
deny all;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
expires 1y;
log_not_found off;
access_log off;
}
error_page 404 /index.php;