Displaying 20 results from an estimated 27 matches for "mod_access".
Did you mean:
end_access
2005 Apr 08
2
Apache and TCP Wrappers
I'm trying to lock down Apache and SSH by using TCP Wrappers.
I put /etc/hosts.allow to be
httpd: IP#1 IP#2 127.0.0.1
sshd: IP#1 IP#2 127.0.0.1
and hosts.deny
ALL: ALL
This seems to work great for ssh, and not at all for httpd. Does anyone
know why this would be?
thanks
2006 May 26
2
Lighttpd Config
...an access it by
going to something like http://208.256.152.228/logapp, but I cannot figure
this out!! It''s got to be rather simple.
Here''s my Lighttpd.conf
server.port = 80
server.pid-file = "/tmp/test_lighttpd.pid"
server.modules = ( "mod_redirect", "mod_access", "mod_fastcgi",
"mod_accesslog", "mod_simple_vhost" )
server.document-root = "/srv/www/lighttpd/"
server.indexfiles = ( "index.php", "index.html" )
accesslog.filename = "/var/log/lighttpd/access_log"
server.errorlog = &quo...
2006 Aug 07
0
image uploads not working with lighttpd
...synaptic. Below
is my lighttpd.conf. I would be very grateful for any and all
suggestions. Totally new to lighttpd and don;t know what else to try.
regards
C
# Debian lighttpd configuration file
#
############ Options you really have to take care of
####################
## modules to load
# mod_access, mod_accesslog and mod_alias are loaded by default
# all other module should only be loaded if neccesary
# - saves some time
# - saves memory
server.modules = (
"mod_access",
"mod_alias",
"mod_accesslog",
&qu...
2006 Feb 06
4
fcgi to run cgi scripts
Dear experts,
I have rail site that is running lighttpd and fcgi. I want the default
domain to serve the rails application, and I also want to have a
virtualhost (bugs.mysite) to resolve to a bugzilla instance.
Bugzilla is basically Perl application called through CGI.
I tried to find pointers on how to set fcgi to run both rails dispatcher
and other cgi scripts in a different virtualhost, and
2006 Feb 28
6
scgi+lighttpd+windows - why wont it work?
...ttp://wiki.rubyonrails.org/rails/pages/HowToDeployWithLighttpdOnWindows
and have my lighttpd.conf file as follows:
server.modules = (
"mod_rewrite",
"mod_redirect",
"mod_access",
"mod_status",
"mod_scgi",
"mod_accesslog" )
server.document-root = "C:/rails/extranet/public"
server.errorlog = "C:/rails/extranet/lo...
2005 Nov 14
0
can't display controllers with lighttpd
...t version of lighttpd, this is
my config file:
# lighttpd configuration file
#
# use a it as base for lighttpd 1.0.0 and above
#
# $Id: lighttpd.conf,v 1.7 2004/11/03 22:26:05 weigon Exp $
############ Options you really have to take care of
####################
## modules to load
# at least mod_access and mod_accesslog should be loaded
# all other module should only be loaded if really neccesary
# - saves some time
# - saves memory
server.modules = (
"mod_rewrite",
"mod_redirect",
"mo...
2006 Feb 16
11
Multiple Rails app on the same server?
...y set up a database called typo using php.typo.com.
[code]
server.modules = (
"mod_rewrite",
"mod_redirect",
"mod_proxy",
"mod_accesslog",
"mod_access",
"mod_fastcgi",
"mod_compress",
"mod_accesslog" )
server.document-root = "/var/www"
server.b...
2006 Mar 29
1
Problems with lighty
...ms-0.8.11
rails-1.0
fcgi-2.4.0
ruby-fcgi-0.8.6
lighttpd-1.4.10
Before I tried setting up multiple apps, I just decided to try for a
single app setup. I have the following configuration:
### begin config ###
server.modules = ( "mod_rewrite", "mod_fastcgi",
"mod_access", "mod_accesslog" )
server.indexfiles = ( "dispatch.fcgi", "index.html" )
accesslog.filename =
"/home/user/fwo/config/lighttpd_access.log"
server.document-root = "/home/user/fwo/public/"
server.error-handler-404 =...
2006 Feb 16
0
url.access-deny
...ccess-deny to deny the access to the unexisting gif
files, but for some reason it does not work (meaning that I still see the
request in the production.log file)
Any suggestion is welcome.
Below are some snipets from my lighttpd.conf file
server.modules = ( "mod_rewrite", "mod_access","mod_fastcgi",
"mod_accesslog" )
$HTTP["url"] =~ "^/javascripts/" {
url.access-deny = ( ".gif")
}
fastcgi.server = ( ".fcgi" =>
( "localhost" =>
(
"min-procs" => 3,
"max...
2008 Dec 02
1
LDAP Authentication and Authorisation.
...would like is for everyone in the (for example) "infra" group
to log into all machines while people in the "development" group can
only log into development servers. From an initial Google my options
seem to be:
* LDAP based netgroups
* OpenSSH - AllowGroups, DenyGroups
* PAM - mod_access
Does anyone have any real world, in the trenches experience they would
be willing to share? I would like to know which is the most
maintainable and easy to hand-over to more junior admins.
Thanks,
Fred.
2007 Nov 23
3
webserver setup
Hi,
I have setup a webserver on CentOS 4.5 with NameVirtualHost.
Two VirtualHost should be reachable by port 80 from outside, while the
third (default) should be only reachable by https from outside but by
http from inside.
Since all share the same IP firewalling seems to be out of question. So
is there a way to restrict that in Apache config?
regards, Andreas
2006 Dec 11
0
Lighttpd setup with rails
...omes up 404.
Here is my lighttpd config pointing to the folder /home/rails/test <-
where I created the rails app.
Thank you!
-Scott
server.modules = (
"mod_rewrite",
"mod_redirect",
"mod_access",
"mod_fastcgi",
"mod_accesslog" )
server.document-root = "/home/rails/test/public/"
server.errorlog = "/var/log/lighttpd.error.log"
index-file.names = ( &qu...
2006 Apr 03
12
scgi?? do i need it for ruby?
This might be obvious to everyone but it is something that i haven''t
been able to find an answer to. Do I need to have either
scgi/fastcgi/cgi running on either lighttpd/apache for ruby scripts to
work? If yes, why? I have installed the scgi server and i can get the
service to run, i have also installed the following mod_fastcgi/2.4.2
mod_ruby/1.2.4 Ruby/1.8.2(2004-12-25) mod_scgi,
2006 Mar 31
2
AAARGH! Need some fresh eyes to look at this pls
...d: xxxxxxxxxxxx
:control_url: druby://127.0.0.1:8999
:port: 9999
:config: config/scgi.yaml
:logfile: log/scgi.log
:env: development
:host: 127.0.0.1
:disable_signals: true
lighttpd.conf:
server.modules = (
"mod_rewrite",
"mod_redirect",
"mod_access",
"mod_accesslog",
"mod_status",
"mod_scgi"
)
server.document-root = "C:/rails/extranet/public/"
server.errorlog = "C:/rails/extranet/log/lighttpd.error.log"
accesslog.filename = "C:/r...
2006 Apr 15
19
Trouble with Lighty
I''m trying to setup my rails application with Light+fcgi.
This is the error I''m getting when I try to start Lighttpd :
============
[getcapture@alpha getcapture]$ ~/etc/rc.d/lighttpd.sh start
Starting Lighttpd
2006-04-15 11:27:24: (mod_fastcgi.c.1022) execve failed for:
/home/getcapture/application/public/dispatch.fcgi No such file or
directory
[getcapture@alpha getcapture]$
2006 Aug 16
18
mongrel lighttpd and ssl
I am wanting to one run instance of lighttpd, many many instances of
mongrel. I also need ssl but only for one of my sites. I understand that
Mongrel does not play with SSL so I am forced to use Lighttpd. I think that
lighttpd only handles ssl or non-ssl on any given instance. Is there a way
for me to accomplish my goal of one lighttpd with multiple mongrels and the
occasional ssl connection?
--
2006 Jun 26
2
running lighttpd -> Recognition failed for "/"
...d.conf looks like this:
server.port = 80
server.bind = "0.0.0.0"
server.pid-file = "/tmp/test_lighttpd.pid"
#server.event-handler = "freebsd-kqueue"
server.modules = ( "mod_rewrite", "mod_redirect", "mod_access",
"mod_fastcgi", "mod_accesslog" )
server.document-root = "/home/sergio/test/public/"
server.indexfiles = ( "dispatch.fcgi", "index.html" )
accesslog.filename =
"/home/sergio/test/log/lighttpd_access.log"...
2005 Sep 07
1
Compiling Apache 2.0.54 on CentOS 4.1
...I/scratch/apache2.src/httpd-2.0.54/modules/proxy
-I/scratch/apache2.src/httpd-2.0.54/include -I/scratch/apache2.src/httpd-
2.0.54/modules/generators -I/usr/include/openssl -I/usr/kerberos/include
-I/scratch/apache2.src/httpd-2.0.54/modules/dav/main -export-dynamic -o
httpd modules.lo modules/aaa/mod_access.la modules/aaa/mod_auth.la
modules/filters/mod_include.la modules/loggers/mod_log_config.la
modules/metadata/mod_env.la modules/metadata/mod_setenvif.la
modules/ssl/mod_ssl.la modules/http/mod_http.la modules/http/mod_mime.la
modules/generators/mod_status.la modules/generators/mod_autoindex.la...
2010 May 24
7
[WTA] Automatically blocking on failed login
Hello All,
I had problems with the security server, the server is frequently
attacked using bruteforce attacks. Is there an application that can
perform automatic blocking when there are failed login to the ports
smtp, pop3 port, and others?
I am currently using CentOS 5.5 in some servers
Thanks in advanced.......
--
--
Best regards,
David
http://blog.pnyet.web.id
-------------- next part
2006 Jan 27
8
ror/lighttpd - HTML files via port 80 become application/octet-stream?
...onf file. Still, it does not make any difference. And
still everything works fine if port != 80).
My lighttpd.conf in total:
----------------------------------------------------------
server.modules = (
"mod_rewrite",
"mod_redirect",
"mod_access",
"mod_fastcgi",
"mod_compress",
"mod_accesslog",
)
server.document-root = "/www/TestApp/public"
server.errorlog = "/var/log/lighttpd/error.log"
server.indexfiles = ( "in...