Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Newbie configuration question
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  10 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Benjamin Lieb  
View profile  
 More options Jul 12 2012, 12:19 pm
From: Benjamin Lieb <benl...@gmail.com>
Date: Thu, 12 Jul 2012 09:19:54 -0700 (PDT)
Local: Thurs, Jul 12 2012 12:19 pm
Subject: Newbie configuration question

This should be easy, I followed all the steps from  
http://famousphil.com/blog/2011/06/installing-gitorious-on-centos-5-6...

but when I go to the website, it displays the apache welcome page.  I can
view the 500.html error pages in the browser, so I know I have the apache
directory configured correctly.  Where do I go to see a log to tell me
what's wrong?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Federico Don  
View profile  
 More options Jul 12 2012, 1:46 pm
From: Federico Don <federico.do...@gmail.com>
Date: Thu, 12 Jul 2012 14:46:15 -0300
Local: Thurs, Jul 12 2012 1:46 pm
Subject: Re: [gitorious] Newbie configuration question

Hello,

you could try view on /var/log/httpd/error_log

I configured my gitorious followed this howto, could you check Apache?

/etc/init.d/httpd configtest

Regards,

2012/7/12 Benjamin Lieb <benl...@gmail.com>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Benjamin Lieb  
View profile  
 More options Jul 12 2012, 1:56 pm
From: Benjamin Lieb <benl...@gmail.com>
Date: Thu, 12 Jul 2012 10:56:34 -0700 (PDT)
Local: Thurs, Jul 12 2012 1:56 pm
Subject: Re: [gitorious] Newbie configuration question

the configtest returns ok... error log shows missing resources like

gitorious/public/stylesheets/gts-common.css

and

gitorious/public/javascripts/lib/all.js

I'm guessing this is something with the Passenger module.  I configured it
in apache with these lines:

   LoadModule passenger_module
/opt/ruby-enterprise-1.8.7-2011.03/lib/ruby/gems/1.8/gems/passenger-3.0.13/ ext/apache2/mod_passenger.so
   PassengerRoot
/opt/ruby-enterprise-1.8.7-2011.03/lib/ruby/gems/1.8/gems/passenger-3.0.13
   PassengerRuby /opt/ruby-enterprise-1.8.7-2011.03/bin/ruby

I noticed that the version was higher on Passenger than in the demo...
could that be something?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Federico Don  
View profile  
 More options Jul 12 2012, 2:02 pm
From: Federico Don <federico.do...@gmail.com>
Date: Thu, 12 Jul 2012 15:02:37 -0300
Local: Thurs, Jul 12 2012 2:02 pm
Subject: Re: [gitorious] Newbie configuration question

You need this config on /etc/httpd/conf/httpd.conf if you have Passenger
3.0.12:

LoadModule passenger_module
/opt/ruby-enterprise-1.8.7-2011.03/lib/ruby/gems/1.8/gems/passenger-3.0.12/ ext/apache2/mod_passenger.so
   PassengerRoot
/opt/ruby-enterprise-1.8.7-2011.03/lib/ruby/gems/1.8/gems/passenger-3.0.12
   PassengerRuby /opt/ruby-enterprise-1.8.7-2011.03/bin/ruby

You can try check this with:

#passenger --version
Phusion Passenger version 3.0.12

"Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.

and you need check the path:

ls /opt/ruby-enterprise-1.8.7-2011.03/lib/ruby/gems/1.8/gems/*

2012/7/12 Benjamin Lieb <benl...@gmail.com>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Benjamin Lieb  
View profile  
 More options Jul 12 2012, 2:10 pm
From: Benjamin Lieb <benl...@gmail.com>
Date: Thu, 12 Jul 2012 11:10:03 -0700 (PDT)
Local: Thurs, Jul 12 2012 2:10 pm
Subject: Re: [gitorious] Newbie configuration question

I checked, it works fine with passenger 3.0.13

so, my /about and /contact links both give 404 errors... I assume this is
still some kind of config issue.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Federico Don  
View profile  
 More options Jul 12 2012, 2:23 pm
From: Federico Don <federico.do...@gmail.com>
Date: Thu, 12 Jul 2012 15:23:16 -0300
Local: Thurs, Jul 12 2012 2:23 pm
Subject: Re: [gitorious] Newbie configuration question

Could you paste /etc/httpd/conf/host.conf please?

regards,

2012/7/12 Benjamin Lieb <benl...@gmail.com>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Benjamin Lieb  
View profile  
 More options Jul 12 2012, 2:37 pm
From: Benjamin Lieb <benl...@gmail.com>
Date: Thu, 12 Jul 2012 11:37:42 -0700 (PDT)
Local: Thurs, Jul 12 2012 2:37 pm
Subject: Re: [gitorious] Newbie configuration question

#enable ~user home directories.
<Directory /home/*/public_html>
    Options MultiViews Indexes SymLinksIfOwnerMatch Includes ExecCGI
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

NameVirtualHost *:80

<VirtualHost *:80>
        ServerName kmcrheldev.unx.mycompany.com
        ServerAdmin ben.l...@mycompany.com
        DocumentRoot /var/www
        ErrorLog  /var/www/error.log
        CustomLog /var/www/access.log combined
</VirtualHost>

<VirtualHost *:80>
        ServerName oriongit.na.mycompany.com
        ServerAdmin ben.l...@mycompany.com
        DocumentRoot /home/git/gitorious/public
        XSendFile on  
        XSendFileAllowAbove on
        ErrorLog  /var/www/errorgit.log
        CustomLog /var/www/accessgit.log combined
#customlog is good for awstats software
        <Directory /home/git/gitorious/public>
          AllowOverride all
          Options -MultiViews
        </Directory>
</VirtualHost>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Federico Don  
View profile  
 More options Jul 12 2012, 2:44 pm
From: Federico Don <federico.do...@gmail.com>
Date: Thu, 12 Jul 2012 15:44:15 -0300
Local: Thurs, Jul 12 2012 2:44 pm
Subject: Re: [gitorious] Newbie configuration question

Try with this=

#enable ~user home directories.
<Directory /home/*/public_html>
    Options MultiViews Indexes SymLinksIfOwnerMatch Includes ExecCGI
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

NameVirtualHost *:80

#<VirtualHost *:80>
#       ServerName kmcrheldev.unx.mycompany.com
#        ServerAdmin ben.l...@mycompany.com
#        DocumentRoot /var/www
#        ErrorLog  /var/www/error.log
#        CustomLog /var/www/access.log combined
#</VirtualHost>

<VirtualHost *:80>
        ServerName oriongit.na.mycompany.com
        ServerAdmin ben.l...@mycompany.com
        DocumentRoot /home/git/gitorious/public
        XSendFile on
        XSendFileAllowAbove on
        ErrorLog  /var/www/errorgit.log
        CustomLog /var/www/accessgit.log combined
#customlog is good for awstats software
        <Directory /home/git/gitorious/public>
          AllowOverride all
          Options -MultiViews
        </Directory>
</VirtualHost>

2012/7/12 Benjamin Lieb <benl...@gmail.com>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Benjamin Lieb  
View profile  
 More options Jul 12 2012, 2:48 pm
From: Benjamin Lieb <benl...@gmail.com>
Date: Thu, 12 Jul 2012 11:48:29 -0700 (PDT)
Local: Thurs, Jul 12 2012 2:48 pm
Subject: Re: [gitorious] Newbie configuration question

Thanks for all the help.

I did try that, but the same thing occurs...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Benjamin Lieb  
View profile  
 More options Jul 13 2012, 8:57 am
From: Benjamin Lieb <benl...@gmail.com>
Date: Fri, 13 Jul 2012 05:57:41 -0700 (PDT)
Local: Fri, Jul 13 2012 8:57 am
Subject: Re: [gitorious] Newbie configuration question

it looks like the public/ directory is not setup correctly.  I dont seem to
have a config/ directory in there that should have the ruby configuration?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »