httpserver.pl 695 B

123456789101112131415161718192021222324252627282930313233343536
  1. #!/usr/bin/env perl
  2. use strict;
  3. my $verbose=0; # set to 1 for debugging
  4. my $dir=".";
  5. my $port = 8999; # just a default
  6. my $ipv6;
  7. my $pid=".http.pid"; # name of the pidfile
  8. my $fork;
  9. do {
  10. if($ARGV[0] eq "-v") {
  11. $verbose=1;
  12. }
  13. elsif($ARGV[0] eq "-d") {
  14. $dir=$ARGV[1];
  15. shift @ARGV;
  16. }
  17. elsif($ARGV[0] eq "-p") {
  18. $pid=$ARGV[1];
  19. shift @ARGV;
  20. }
  21. elsif($ARGV[0] eq "--fork") {
  22. $fork = $ARGV[0];
  23. shift @ARGV;
  24. }
  25. elsif($ARGV[0] =~ /^(\d+)$/) {
  26. $port = $1;
  27. }
  28. elsif($ARGV[0] =~ /^ipv6/i) {
  29. $ipv6="--ipv6 ";
  30. }
  31. } while(shift @ARGV);
  32. exec("server/sws --pidfile $pid$fork $ipv6$port $dir");