Bug 122560 - Usage

git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@1731 6955db30-a419-402b-8a0d-67ecbb4d7f56
master
vfilippov 2013-07-19 15:07:58 +00:00
parent 27eadbfee7
commit 97e4a2aefb
1 changed files with 17 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/perl
# Standalone HTTP server for running Bugzilla based on HTTP::Server::Simple and Net::Server
# USAGE: perl HTTPServerSimple.pl --conf_file bugzilla.conf
# USAGE: perl HTTPServerSimple.pl bugzilla.conf
# See bugzilla.conf sample in the end of this file
use strict;
@ -201,3 +201,19 @@ package Bugzilla::HTTPServerSimple::FakeExit;
1;
__END__
Sample bugzilla.conf:
class Net::Server::PreFork
port localhost:8157
min_servers 4
max_servers 20
min_spare_servers 4
max_spare_servers 8
max_requests 1000
user www-data
group www-data
log_file /home/www/logs/bugzilla.log
log_level 3
pid_file /var/run/bugzilla.pid
background 1