DEV Community

Discussion on: Gitea On OpenBSD: Using Official Package

Collapse
 
duy_nguyen profile image
Duy Nguyen • Edited

For the httpd conf, openbsd changed the format for fastcgi after 6.8

it should be
location "/*" {
fastcgi socket 127.0.0.1 10787
}

Collapse
 
nabbisen profile image
nabbisen • Edited

Hello. Thank you for your comments.

Yes, the support for non-localhost fastcgi sockets was added in 6.8. Therefore, the syntax was changed. Actually, it should be fastcgi socket tcp 127.0.0.1 10787 :
openbsd.org/faq/upgrade68.html#Con...

I updated the settings of httpd.conf in my post. Again, thank you so much :)