Closed
Bug 729253
Opened 13 years ago
Closed 13 years ago
Setup of myapps staging server
Categories
(Web Apps :: Infrastructure, defect)
Web Apps
Infrastructure
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: onecyrenus, Assigned: tarek)
References
Details
This is going to require a few things.
nginx, node, rpm's..etc..etc
Currently qa doesn't have access to myapps.mozillalabs.com, so this bug is going to most likely require follow on bugs.
The machine to setup is: myapps-stage1.vm1.labs.sjc1.mozilla.com
Reporter | ||
Updated•13 years ago
|
Assignee: dclarke → tarek
Reporter | ||
Comment 1•13 years ago
|
||
Documenting what has been done so far:
rpm memcached
ln -s /usr/bin/python /usr/bin/python26
Attempted to install the rpm binaries from
http://hudson.build.mtv1.svc.mozilla.com/view/9.%20Apps/job/Apps-Sync-RPMS-RHEL6/
unzip / rpm -ivh on the rpm's with limited success.. Need more input as to how to install the rpms
also noticed httpd wasn't installed but running on myapps.mozillalabs.
yum install httpd
Reporter | ||
Comment 2•13 years ago
|
||
yum install nginx squid mysql
vi /etc/nginx.conf
comment out all the lines.
ex:
#error_page 404 /404.html;
#location = /404.html {
# root /usr/share/nginx/html;
#}
setup /etc/nginx/conf.d/appsync.conf
location ~^/(verify|collections|getmanifest|__heartbeat__) {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://unix:/tmp/gunicorn-appsync.sock;
}
location / {
root /var/www/static;
}
Reporter | ||
Comment 3•13 years ago
|
||
Make sure the end of appsync.conf includes loading conf.d directory inside the server directive
#}
# Load config files from the /etc/nginx/conf.d directory
include /etc/nginx/conf.d/*.conf;
}
}
Comment 4•13 years ago
|
||
Is AppSync going to be dropped for the staging server? Or are we going to continue to try to set it up?
Updated•13 years ago
|
OS: Mac OS X → All
Hardware: x86 → All
Comment 5•13 years ago
|
||
I believe we will be dropping appsync from the staging server
Updated•13 years ago
|
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Updated•13 years ago
|
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•