Explorar el Código

add support for setting default_type

tags/v0.55.0
Kent Shultz hace 10 años
padre
commit
6fd6ee7b20
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      nginx/templates/config.jinja

+ 1
- 1
nginx/templates/config.jinja Ver fichero

@@ -22,7 +22,7 @@ events {

http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
default_type {{ nginx.get('default_type', 'application/octet-stream') }};
log_format main '$scheme://$host:$server_port$uri$is_args$args $remote_addr:$remote_user "$request" $request_time $request_length:$bytes_sent $status "$http_referer" "$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.fifo main;
sendfile {{ nginx.get('sendfile', 'on') }};

Cargando…
Cancelar
Guardar