Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(527)

Side by Side Diff: skfe/build_release

Issue 819473004: Set up the nginx servers for handling *.skia.org traffic. (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #!/bin/bash
2 # Builds and uploads a debian package with configuration files for nginx.
3 APPNAME=skfe-config
4 DESCRIPTION="The local config files for nginx serving *.skiadev.com"
5
6 # This package depends upon nginx being installed.
7 DEPENDS=nginx
8
9 # Copy files into the right locations in ${ROOT}.
10 copy_release_files()
11 {
12 INSTALL="sudo install -D --verbose --backup=none --group=root --owner=root"
13 INSTALL_DIR="sudo install -d --verbose --backup=none --group=root --owner=root"
14 SOFTLINK="sudo ln -s"
15 # Configs for the sites we are hosting.
16 ${INSTALL} --mode=644 -T ./sys/skia_org ${ROOT}/etc/nginx/sites-avail able/skia_org
17 sudo mkdir ${ROOT}/etc/nginx/sites-enabl ed
18 ${SOFTLINK} ../sites-available/skia_org ${ROOT}/etc/nginx/sites-enabl ed/skia_org
19
20 # Monitoring.
21 ${INSTALL} --mode=644 -T ./sys/nginx_monit ${ROOT}/etc/monit/conf.d/ngin x
22 }
23
24 source ../bash/release.sh
OLDNEW
« no previous file with comments | « skfe/README.md ('k') | skfe/sys/nginx_monit » ('j') | skfe/sys/skia_org » ('J')

Powered by Google App Engine
This is Rietveld 408576698