Fixed enginx example
the build was successful Detalles

Este commit está contenido en:
tastytea 2018-12-09 20:04:48 +01:00
padre d2d35d8ac5
commit ca0650a4cd
Firmado por: tastytea
ID de clave GPG: CFC39497F1B26E07
Se han modificado 1 ficheros con 7 adiciones y 0 borrados

Ver fichero

@ -32,9 +32,16 @@ server {
# access_log /var/log/nginx/avatar main;
error_log /var/log/nginx/avatar warn;
expires 86400;
add_header Cache-Control "public, max-age=86400" always;
location / {
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/cgi-fcgiwrap.socket-1;
fastcgi_param SCRIPT_FILENAME /usr/bin/libravatarserv;
# fastcgi_param LIBRAVATARSERV_DEFAULT_FALLBACK 404;
# fastcgi_param LIBRAVATARSERV_REDIRECT_NOFALLBACK 0;
# fastcgi_param LIBRAVATARSERV_REDIRECT_NOUSER 0;
}
}