public
Fork of rails/rails
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/thewoolleyman/rails.git
Search Repo:
notes and config on nginx proxy setup
thewoolleyman (author)
Sat Jul 19 01:28:53 -0700 2008
commit  37374094941e27bbf12f4cc095c5b01e39103c07
tree    de57d7f6cc0efa78ecd81799470238886a0a3a18
parent  5502427d489057b9eff66680169c3be48bf66854
...
31
32
33
 
 
 
 
 
 
 
 
 
 
34
35
36
...
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
0
@@ -31,6 +31,16 @@ $ sudo aptitude install postfix
0
 
0
 * Use cinabox to perform rest of ruby/ccrb setup
0
 
0
+* Install/setup nginx
0
+$ sudo aptitude install nginx
0
+$ sudo vi /etc/nginx/sites-available/default
0
+# comment two lines and add one to proxy to ccrb:
0
+# root /var/www/nginx-default;
0
+# index index.html index.htm;
0
+ proxy_pass http://127.0.0.1:3333;
0
+$ sudo /etc/init.d/nginx start
0
+
0
+
0
 * (temp until ci files in thewoolleyman branch are checked into rails repo):
0
   * Check out ci branch w/git to ~/workspace/rails_thewoolleyman: http://github.com/thewoolleyman/rails/tree/ci
0
   $ ln -s /home/ci/workspace/rails_thewoolleyman/ci/site_config.rb /home/ci/.cruise/site_config.rb
...
49
50
51
52
 
53
54
55
...
49
50
51
 
52
53
54
55
0
@@ -49,7 +49,7 @@ Configuration.email_from = 'thewoolleyman@gmail.com'
0
 
0
 # Root URL of the dashboard application. Setting this attribute allows various notifiers to include a link to the
0
 # build page in the notification message.
0
-Configuration.dashboard_url = 'http://ci.rubyonrails.org:3333/'
0
+Configuration.dashboard_url = 'http://ci.rubyonrails.org/'
0
 
0
 # If you don't want to allow triggering builds through dashboard Build Now button. Useful when you host CC.rb as a
0
 # public web site (such as http://cruisecontrolrb.thoughtworks.com/projects - try clicking on Build Now button there

Comments

    No one has commented yet.