I sent this to chaoskaiser72@yandex.com but it seems yandex blocks cockmail.
Hiiii.
I'm trying to setup kareha on nginx. Tbh i have zero(0) experience
with nginx but i made to the point that i can
post messages and threads, but my problem is that i cant open threads.
When i click on thread title it points to
http://127.0.0.1/kareha.pl/1743871222/l50 and returns 404.
I can access thread on http://127.0.0.1/res/1743871222.html, though.
I know you use fork but it looks like a skill issue to me. I think there
is a problem with my FCGI configuration. Kareha should generate
1743871222/l50.html right?
I start spawn-fcgi like this:
spawn-fcgi -a 127.0.0.1 -p 9000 -u nginx /bin/fcgiwrap
nginx.conf:
root /var/www/kareha;
location ~ \.pl$|.sh$ {
fastcgi_pass 127.0.0.1:9000;
include /etc/nginx/fastcgi.conf;
}
PLEASE RESPOND
That's a pretty common problem. There's a thread here with the deets:
https://4-ch.net/tech/kareha.pl/1697813389/
It's been a while since I've set up a board but I can probably give some tips--I helped set this one up if that's worth anything. Kareha and Kiramoji work exactly the same.
I really can't help at all, I barely got this place running with >>2-san's help, and now it's bugged and I can't do anything with it. Too busy with work. I am an old man now.
>>3
Forgot my own capcode award
Thank you guys! Teh link was useful...
location ~ \.pl(/|$) {
fastcgi_split_path_info ^(.+\.pl)(/.*)$;
try_files $uri $uri/ index.html;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
include fastcgi_params;
fastcgi_pass unix:/var/run/fcgiwrap.socket;
}
Its not something I could have came with myself. @_@