Displaying 18 results from an estimated 18 matches for "mod_redirect".
2006 Feb 06
4
fcgi to run cgi scripts
...go, or tell me how
to configure fcgi?
Thanks a lot.
Ezra
Here is my current config file:
server.document-root = "/opt/webspace/mysite/public"
server.port = 80
server.username = "apache"
server.groupname = "apache"
server.modules = ("mod_rewrite","mod_redirect","mod_fastcgi", "mod_cgi")
fastcgi.server = (".fcgi" =>
( "railsapp" =>
( "min-procs" => 1,
"max-procs" => 5,
"socket" => "/tmp/ruby-railsapp.fastcgi",
"bin-path"...
2006 May 26
2
Lighttpd Config
...at others on the network can 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"...
2010 Aug 17
5
apache rewrite
Is there some easy way to rewrite just the base URL to another URL but
leave all other URL's unmolested?
i.e.
http://www.example.com = rewrite to another URL
http://www.example.com/files = deliver from the assigned subdirectory
obviously this...
Redirect / http://www.other_url.com
redirects everything
and I don't want /files to be redirected
Craig
--
This message has been scanned
2006 Feb 28
6
scgi+lighttpd+windows - why wont it work?
.../scgi_service:18
I also followed the lighttpd tute at
http://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"...
2006 Feb 16
11
Multiple Rails app on the same server?
...I am posting my
lighttpd.conf file but I''m not sure if this is where my error is. FWIW
I have already 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",...
2006 Dec 11
0
Lighttpd setup with rails
...I can see the rails welcome screen, but everything else comes 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/li...
2006 Mar 31
2
AAARGH! Need some fresh eyes to look at this pls
...to/your/mysql.sock
scgi.yaml
:password: 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"
acce...
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 "/"
...by this error
my lighttpd.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/li...
2006 Aug 07
0
image uploads not working with lighttpd
...d by default
# all other module should only be loaded if neccesary
# - saves some time
# - saves memory
server.modules = (
"mod_access",
"mod_alias",
"mod_accesslog",
"mod_rewrite",
"mod_redirect",
"mod_fastcgi",
# "mod_status",
# "mod_evhost",
# "mod_compress",
# "mod_usertrack",
# "mod_rrdtool",
# "mod_webdav",
# "mod_expire"...
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 Jan 27
8
ror/lighttpd - HTML files via port 80 become application/octet-stream?
...rdcoded all the MIME
entries in the conf 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"
serv...
2005 Nov 14
0
can't display controllers with lighttpd
...# 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",
"mod_access",
# "mod_auth",
# "mod_status",
"mod_fastcgi",
"mod_simple_vhost",
#"mod_evhost",
# "mod_cgi",
"mod_compress",
#...
2006 Feb 22
5
Rails on lighttpd locks up, freezes, unresponsive every day
I have RoR running on lighttpd on RedHat Linux and every morning that I
check the web page it just keeps waiting to refresh it forever, Firefox
and IE never times out on any of the pages I try. Has anyone seen that
happening to their RoR? I also removed lighttpd completely and just ran
webrick but there was no difference. The linux box has a pretty old
kernel 2.4.21-4, could that be the
2006 Mar 02
6
Lighttpd and fastcgi problems...
Hi,
I''m having difficulty getting ruby running via Lighttpd and fastcgi. My
lighttpd.conf reads:
server.port = 81
server.pid-file = "/tmp/test_lighttpd.pid"
server.modules = ( "mod_redirect", "mod_access", "mod_fastcgi",
"mod_accesslog", "mod_simple_vhost" )
server.document-root = "/tmp/mis/public"
server.indexfiles = ( "index.html" )
server.error-handler-404 = "/dispatch.fcgi"
accesslog.filename = "/var...
2006 Feb 27
3
Rails via Lighttpd
...:17: (mod_fastcgi.c.1325) [ERROR]: spawning fcgi failed.
2006-02-27 12:32:17: (server.c.834) Configuration of plugins failed.
Going down.
This is my lighttpd.conf file:
#--------------------------
server.port = 80
server.modules = ( "mod_rewrite", "mod_fastcgi", "mod_redirect" )
server.document-root = "/home/nathan/rails/notifications/public"
fastcgi.server = (".fcgi" => ( "railsapp" =>
( "min-procs" => 1,
"max-procs" => 5,
"socket" => "/tmp/ruby-railsapp.fcgi"...
2006 Oct 10
7
Problems with RJS w/ Lighttpd & Ubuntu
I have my code working on my local machine no problem, but when I upload
to the server the RJS effects I have aren''t working. The server is
running Ubuntu Dapper w/ lighttpd while on my local machine I''m using
webrick.
For kicks I shut down lightty and booted my app on the server with
webrick and it works fine. So it''s definitely a lightty issue.
Anyone else seen