Skip to content

Instantly share code, notes, and snippets.

@sergioska
Last active May 8, 2020 15:07
Show Gist options
  • Save sergioska/0711f1a8d26c997ae933fa8d4d06257d to your computer and use it in GitHub Desktop.
Save sergioska/0711f1a8d26c997ae933fa8d4d06257d to your computer and use it in GitHub Desktop.
[k8s] configMap for nginx configuration about kubernetes web applicaiont deploy
kind: ConfigMap
apiVersion: v1
metadata:
name: nginx-config
data:
default.conf: |
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /srv/app/public;
location / {
try_files $uri /index.php$is_args$args;
}
location ~ ^/index\.php(/|$) {
fastcgi_pass 127.0.0.1:9000;
fastcgi_read_timeout 300;
proxy_read_timeout 300;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
internal;
}
location ~ \.php$ {
return 404;
}
client_max_body_size 6m;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment