Hi, all
Can't connect by kACARS_Free client to site. Web server work on nginx + php-fpm. Prior to that, he worked at the site apache22 and had no problems.
nginx.conf:
server {
listen *:80;
server_name example.org;
access_log /var/log/nginx/exmple.access.log;
# access_log off;
location / {
root /www/example;
index index.php index.html;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?q=$1 last;
}
}
location ~* ^.+\.(jpg|jpeg|gif|png|svg|swf|ico|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|xml)$ {
root /www/example;
expires max;
}
location ~ \.php$ {
fastcgi_pass unix:/tmp/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /www/example$fastcgi_script_name;
include fastcgi_params;
}
}
Site work is correct, but kACARS_Free don't connect.
Any ideas?