user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
blob a4721b5bd773c3e5f074960973a07acae805db17 744 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 
# Example Apache2 configuration using Plack::Handler::Apache2
# Adjust paths to your installation

ServerName "public-inbox"
ServerRoot "/var/www"
DocumentRoot "/var/www"
ErrorLog "/tmp/public-inbox-error.log"
PidFile "/tmp/public-inbox.pid"
Listen 127.0.0.1:8080
LoadModule perl_module /usr/lib/apache2/modules/mod_perl.so

# no need to set no rely on HOME if using this:
PerlSetEnv PI_CONFIG /home/pi/.public-inbox/config

<Location />
	SetHandler perl-script
	PerlResponseHandler Plack::Handler::Apache2
	PerlSetVar psgi_app /path/to/public-inbox.psgi
</Location>

# Optional, preload the application in the parent like startup.pl
<Perl>
	use Plack::Handler::Apache2;
	Plack::Handler::Apache2->preload("/path/to/public-inbox.psgi");
</Perl>

debug log:

solving a4721b5b ...
found a4721b5b in https://80x24.org/public-inbox.git

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).