search for: app1

Displaying 20 results from an estimated 121 matches for "app1".

Did you mean: app
2006 Dec 16
5
trying to add another app
hey all, I have an app working great with apache2 and mongrel_cluster. However, I''m trying to run another application and now when I go to app1.comit falls to app2.com and the opposite. That''s probably because I messed up somewhere with the cluster. this is the content of my conf.d/app1.proxy_cluster.conf: <Proxy balancer://mongrel_cluster> BalancerMember http://app1.com:8000 BalancerMember http://app1.com:8001 Balance...
2018 Jan 30
2
Cannot add metadata to network XML
Hi, i tried adding metadata to Network XML ( NOT DOMAIN XML) but it removes it as soon as i save here's my network XML <network> <name>bridgeTest0</name> <uuid>cf2aae7a-b459-459b-ba2c-399190607629</uuid> <metadata> <app1:foo xmlns:app1="http://app1.org/app1/"> <app1:test>testing!</app1:test> </app1:foo> </metadata> <forward mode='bridge'/> <bridge name='lxcbr0'/> </network> -- Regards, Shashwat Shagun
2006 Sep 07
21
Multiple rails apps with Mongrel
..., 3000, 3100), and then have each Mongrel instance (or cluster) set to the corresponding port (3000, 3100). [If this theory is incorrect, please let me know!] However, what I''m trying to acheive is to host them all under the same domain. In othe words, I would like to have www.domain.com/app1 www.domain.com/app2 I don''t know how to acheive this. Do I make each of them Virtual Hosts, each with their own ProxyPass? (But I haven''t been able to find any simple documentation online explaining how to set a Virtual Host at www.domain.com/app1 instead of app1.domain.com. I kn...
2006 Dec 21
4
my apache 2.2 conf
...o the root, ViewVC mounted on /cvs, and /server-status and /server-info. <VirtualHost *:80> ServerName int.example.com ServerAlias int CustomLog /var/www/logs/int.example.com/access.log combined ErrorLog /var/www/logs/int.example.com/error.log [...] ## Application Server # APP1 <Proxy balancer://app1> BalancerMember http://127.0.0.1:11001 </Proxy> Alias /app1 /production/app1/public <Directory /production/app1/public> Allow from .example.com RewriteEngine on RewriteRule ^/?$ balancer://app1%{REQUEST_URI} [P,L] RewriteCond %{R...
2006 Apr 05
13
Apache Deployment Woes
...I''m pretty confident that if I can fix the number of dispatchers, my problem will go away. Here is what I have in my httpd.conf (directly after the AddModule section): <IfModule mod_fastcgi.c> FastCgiIpcDir /var/fcgi_ipc/ AddHandler fastcgi-script .fcgi FastCgiServer /home/app1/public/dispatch.fcgi -idle-timeout 120 -initial-env RAILS_ENV=production -processes 4 FastCgiServer /home/app2/public/dispatch.fcgi -idle-timeout 120 -initial-env RAILS_ENV=production -processes 2 </IfModule> Note that I have two rails apps running on this server. As far as I can tell,...
2006 Nov 04
2
[ Rails ] Multiple rails apps on 1 host
Team, I''m trying to figure out how to run 2 rails apps on one host. I ran an experiment: cd /tmp/ rails app1 rails app2 cd app1 script/server rails put a copy of lighttpd.conf in /tmp/app1/config/ and then started lighttpd http://localhost:3000 gave me the splash page. I shutdown the server I added something to /tmp/app1/config/lighttpd.conf server.modules = ( "mod_rewrite", &quot...
2006 Mar 02
2
SwitchTower: why symlink releases/under -> current?
Hi, I have a trouble with deploying my ordinary rails application(myapp). When I execute ''rake deploy'', [...] command finished * executing task symlink * executing "ls -x1 /var/www/myapp/releases" servers: ["app1.olalog.com"] [app1.olalog.com] executing command command finished * executing "ln -nfs /var/www/myapp/releases/under /var/www/myapp/current" servers: ["app1.myapp.com"] [app1.olalog.com] executing command ** [out :: app1.myapp.com] KeyChain 2.5.5; http://...
2013 Mar 08
5
hiera / create_resources / define
...trying to use create_resources to create a series of files with semi-custom content based on a template. This is what I have: foo.conf.erb: Name "<%= name %>" WorkingDir "<%= working_dir %>" ... a bunch of static entries YAML: configs: config1: Name: app1 WorkingDir: /var/app1 config2: Name: app2 WorkingDir: /var/app2 ... config100: Name: app100 WorkingDir: /var/app100 manifest: class app { create_resources(app::virtualApps, hiera(''configs'')) } define app::virtualApps() { file {"/etc/...
2005 Sep 30
1
(no subject)
...|Platform: MAC=0004f2022609, IP=Unknown, Subnet Mask=Unknown 0930155446|so |3|00|Platform: BootBlock=2.5.0 (11300_010) 06-Nov-04 08:07 0930155446|so |3|00|Application, main: Label=BOOT, Version=2.6.1.0003 04-Dec-04 14:38 0930155446|so |3|00|Application, main: P/N=3150-11069-261 0930155446|app1 |4|00|Initial log entry. 0930155447|so |3|00|Link status is Net up, PC down. 0930155455|app1 |3|00|Using resolver server 192.168.222.4 and domain local. 0930155455|app1 |3|00|DHCP returned result 0x287 from server 192.168.222.4. 0930155455|app1 |3|00| Phone IP address is 192.168.222.202. 0...
2007 Jan 26
4
Polycom Provistioning Issue
...MAC=0004f2023ecc, IP=192.168.15.55, Subnet Mask=255.255.255.0 1005195711|so |3|00|Platform: BootBlock=2.5.0 (11500_040) 06-Nov-04 08:08 1005195711|so |3|00|Application, main: Label=BOOT, Version=3.2.2.0019 24-Aug-06 18:05 1005195711|so |3|00|Application, main: P/N=3150-11069-322 1005195711|app1 |4|00|Initial log entry. 1005195711|app1 |3|00|DNS resolver server is '192.168.15.10' 1005195711|app1 |3|00|DNS resolver search domain is '' 1005195711|app1 |3|00|Bootline: eim(0,0)bootHost:flash e=192.168.15.55:ffffff00 h=192.168.15.52 g=192.168.15.10 u=1 pw=**** tn=CircaIP 10051...
2006 Jul 23
1
Mongrel, Apache 2.2, Rails question. HELP!
...couple of days with the deployment scenario I am trying to setup. I use a service provider that supports multiple domains via Virtual Hosts. I have all the software installed and "working". I want to deploy two apps under my domain and have the following in my .conf file: Redirect /app1 http://www.mydomain.com/app1/ ProxyPass /app1/ http://localhost:3000/ ProxyPassReverse /app1/ http://localhost:3000/ Redirect /app2 http://www.mydomain.com/app2/ ProxyPass /app2/ http://localhost:3001/ ProxyPassReverse /app2/ http://localhost:3001/ ProxyPreserveHost On Everything seems to wo...
2010 Nov 30
2
db migration fails
...;'m deploying new rails applications. Everything works well except when it comes to the db migration: * executing "cd /var/rails/benefits_test/releases/20101129190121 && /opt/ruby-enterprise-1.8.7-2010.02/bin/rake RAILS_ENV=production db:util:migrate" servers: ["ps-test-app1"] [ps-test-app1] executing command ** [out :: ps-test-app1] (in /filestore/rails/benefits_test/releases/20101129190121) *** [err :: ps-test-app1] rake aborted! *** [err :: ps-test-app1] getaddrinfo: Name or service not known *** [err :: ps-test-app1] *** [err :: ps-test-app1] (See full trace b...
2005 Jun 14
3
Calling on all Polycom Experts
...3|00|Platform: MAC=0004f201be89, IP=Unknown, Subnet Mask=Unknown 0613014243|so |3|00|Platform: BootBlock=2.4.0 (11500_020) 13-Nov-03 15:03 0613014243|so |3|00|Application, main: Label=BOOT, Version=2.6.2.0032 17-Mar-05 16:27 0613014243|so |3|00|Application, main: P/N=YYYY-YYYYY-YYY 0613014243|app1 |4|00|Initial log entry. 0613014244|so |3|00|Link status is Net up Speed 100 full Duplex, PC down. 0613014247|app1 |3|00|Using resolver server 192.168.0.5 and domain . 0613014247|app1 |3|00|DHCP returned result 0x8F from server 192.168.0.5. 0613014247|app1 |3|00| Phone IP address is 192.168.0.1...
2012 Sep 26
6
Puppet 2.7, hiera 1.0 and hiera as an ENC
.../%{application}/default # default data for an application - nonprod/%{sysclass}/%{hostname} - nonprod/%{sysclass}/%{env} - nonprod/%{sysclass}/default Then to have something like this under the datadir: #├── global.yaml #├── basic.yaml #├── nonprod #│ ├── app1 #│ │ ├── common-integration.yaml << Alfresco common integration #│ │ ├── continuous-integration.yaml #│ │ ├── dev.yaml #│ │ ├── default.yaml #│ │ ├── host1.yaml #│ │ ├── host2.yaml #│ │ ├── performance.yaml #│ │ ├── qa.y...
2006 Oct 23
1
Polycom provision errors still! Arg!
...C=0004f2027255, IP=172.16.27.10, Subnet Mask=255.255.255.224 1023201556|so |3|00|Platform: BootBlock=2.5.0 (11500_040) 06-Nov-04 08:08 1023201556|so |3|00|Application, main: Label=BOOT, Version=3.2.2.0019 24-Aug-06 18:05 1023201556|so |3|00|Application, main: P/N=3150-11069-322 1023201556|app1 |4|00|Initial log entry. 1023201556|app1 |3|00|DNS resolver servers are 'x.x.x.x' x.x.x.x' 1023201556|app1 |3|00|DNS resolver search domain is '' 1023201556|app1 |3|00|Bootline: eim(0,0)bootHost:flash e=172.16.27.10:ffffffe0 h=172.16.27.6 g=172.16.27.1 u=pcom pw=**** tn=Circa...
2007 Jan 30
3
Update for thread: Multiple rails apps with Mongrel
Hi, I found another way to throw multiple rails apps under a single domain like: http://www.domain.com/app1 http://www.domain.com/app2 changes here... http://tonyrose023.blogspot.com/2007/01/multiple-rails-apps-with- mongrel.html Tony
2006 Jan 13
2
Multiple Rails Apps in 1 Virtual Host on Apache 1.3
After attempting this on my own using the Apache "Alias" directive I noticed that it did not work in all cases: http://myserver/app1/ (this worked) http://myserver/app1 (this failed, I won''t bore you with the rewrite logs of why) This led me to the following article http://wiki.rubyonrails.com/rails/pages/HowtoDeployMoreThanOneRailsAppOnOneMachine Which I followed. Must to my sorrow I get the same behaviour as using...
2010 Apr 14
1
sshd sending eof to peer instead of SSH_MSG_CHANNEL_CLOSE.
I am using the ssh port forwarding feature. My configuration is as follows: On my server machine, running sshd, and app1. On my client machine, running ssh (client) and app2. The client connects to the server requesting remote port forwarding from port X on the server machine to port Y on the client machine. app2 is listening on port Y on the client machine. app1 connects to port X on the server machine. s...
2006 Jun 21
3
multiple apps one virtual host one domain
I''m trying to achieve the following: Having a development server that runs multiple rails apps running wihout creating a different virtual host for each apps. my documentRoot is therefore /var/rails for my whole config http://myserver/app1/controller/action -> (/var/rails/app1/...) http://myserver/app2/controller/action -> (/var/rails/app2/...) I''m under apache 1.3 mod rewrite seems to work since I''m able to capture app1 and redirecting to the proper folder. But I''m stuck after that. Has anyone mana...
2018 Jan 30
0
Re: Cannot add metadata to network XML
...etwork XML). You can see the version of your libvirt with "virsh -v". > >  here's my network XML > > <network> >   <name>bridgeTest0</name> >   <uuid>cf2aae7a-b459-459b-ba2c-399190607629</uuid> >   <metadata> >         <app1:foo xmlns:app1="http://app1.org/app1/"> >                 <app1:test>testing!</app1:test> >         </app1:foo> >   </metadata> >   <forward mode='bridge'/> >   <bridge name='lxcbr0'/> > </network> > > -...