pidgin/old.pidgin.im

Update the version and ChangeLog for 2.14.10
default tip
2022-06-03, Gary Kramlich
af2d360d0740
Update the version and ChangeLog for 2.14.10
daemon off;
error_log error.log;
pid pid;
events {
worker_connections 100;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log access.log;
client_body_temp_path /tmp;
proxy_temp_path /tmp;
fastcgi_temp_path /tmp;
server {
listen 8080;
# I couldn't find a way to use a relative document root here and
# have it work with php. Instead, the "run" script writes the
# absolute doc root to a conf file and we include it here. If you
# can find a way to make the relative doc root, please get rid of
# this, because it's a little ugly. --Mark Doliner, 2012-04-28
include nginx_docroot.conf;
# Enable php
index index.php index.html;
location ~ \.php$ {
# NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini?
include /etc/nginx/fastcgi_params;
fastcgi_intercept_errors on;
fastcgi_pass 127.0.0.1:9000;
}
}
}