Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Yusei Tahara
slapos
Commits
bcd1612a
Commit
bcd1612a
authored
Oct 24, 2017
by
Eteri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
caddy: move files from software to stack
parent
7bda84e1
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
78 additions
and
61 deletions
+78
-61
component/caddy/buildout.cfg
component/caddy/buildout.cfg
+2
-1
software/caddy/software.cfg
software/caddy/software.cfg
+1
-60
stack/caddy/Caddyfile.in
stack/caddy/Caddyfile.in
+0
-0
stack/caddy/buildout.cfg
stack/caddy/buildout.cfg
+62
-0
stack/caddy/gowork.cfg
stack/caddy/gowork.cfg
+13
-0
stack/caddy/index.html
stack/caddy/index.html
+0
-0
stack/caddy/instance-caddy.cfg.in
stack/caddy/instance-caddy.cfg.in
+0
-0
stack/caddy/instance.cfg.in
stack/caddy/instance.cfg.in
+0
-0
No files found.
component/caddy/buildout.cfg
View file @
bcd1612a
...
@@ -17,4 +17,5 @@ location = ${gopath:src}/${:go.importpath}
...
@@ -17,4 +17,5 @@ location = ${gopath:src}/${:go.importpath}
[caddy-repository]
[caddy-repository]
<= go-git-repository
<= go-git-repository
go.importpath = github.com/mholt/caddy
go.importpath = github.com/mholt/caddy
revision = c4dfbb9956095c92d0586a52723748c070c7b459
revision = c4dfbb9956095c92d0586a52723748c070c7b459
\ No newline at end of file
recursive = true
\ No newline at end of file
software/caddy/software.cfg
View file @
bcd1612a
[buildout]
[buildout]
extends =
extends =
../../component/caddy/buildout.cfg
../../stack/caddy/buildout.cfg
../../stack/slapos.cfg
\ No newline at end of file
parts =
gowork
golang19
slapos-cookbook
instance-profile
template-caddy
caddy
[gowork]
install =
github.com/mholt/caddy/caddy
[instance-profile]
recipe = slapos.recipe.template
url = ${:_profile_base_location_}/instance.cfg.in
md5sum = ae83c35995ce14432ded78ca30cab61b
output =${buildout:directory}/instance.cfg
filename = instance.cfg
mode = 0644
[gopath]
directory = ${buildout:directory}/go.work
src = ${:directory}/src
bin = ${:directory}/bin
[template-caddyfile]
recipe = slapos.recipe.template
url = ${:_profile_base_location_}/Caddyfile.in
md5sum = 616f9c7cb788e1f1d7cee2093a7dc6ef
output = ${buildout:directory}/Caddyfile.in
mode = 0644
[template-caddy]
recipe = slapos.recipe.template
url = ${:_profile_base_location_}/instance-caddy.cfg.in
md5sum = 045022e5698badca5dbdd6b95518f8e1
output = ${buildout:directory}/instance-caddy.cfg.in
mode = 0644
[template-public-html]
recipe = slapos.recipe.template
url = ${:_profile_base_location_}/index.html
md5sum = b5794ac8b10ed90173ad566e6e324b35
output = ${buildout:directory}/index.html
mode = 0644
[caddy]
recipe = slapos.recipe.cmmi
path = ${caddy-repository:location}
go = ${golang19:location}/bin/go
#configure-command = cd ${:path}/caddy && ${:go} get -v
make-targets =
make-binary = cd ${:path}/caddy && ${:go} install -v
environment =
PATH=${pkgconfig:location}/bin:${golang19:location}/bin:${buildout:bin-directory}:%(PATH)s
GOPATH=${gopath:directory}
output = ${gopath:bin}/caddy
\ No newline at end of file
s
oftware
/caddy/Caddyfile.in
→
s
tack
/caddy/Caddyfile.in
View file @
bcd1612a
File moved
stack/caddy/buildout.cfg
0 → 100644
View file @
bcd1612a
[buildout]
extends =
../../component/caddy/buildout.cfg
../../stack/slapos.cfg
gowork.cfg
parts =
gowork
slapos-cookbook
instance-profile
template-caddy
caddy
[gowork]
install =
github.com/mholt/caddy
[instance-profile]
recipe = slapos.recipe.template
url = ${:_profile_base_location_}/instance.cfg.in
md5sum = ae83c35995ce14432ded78ca30cab61b
output =${buildout:directory}/instance.cfg
filename = instance.cfg
mode = 0644
[gopath]
directory = ${buildout:directory}/go.work
src = ${:directory}/src
bin = ${:directory}/bin
[template-caddyfile]
recipe = slapos.recipe.template
url = ${:_profile_base_location_}/Caddyfile.in
md5sum = 616f9c7cb788e1f1d7cee2093a7dc6ef
output = ${buildout:directory}/Caddyfile.in
mode = 0644
[template-caddy]
recipe = slapos.recipe.template
url = ${:_profile_base_location_}/instance-caddy.cfg.in
md5sum = 045022e5698badca5dbdd6b95518f8e1
output = ${buildout:directory}/instance-caddy.cfg.in
mode = 0644
[template-public-html]
recipe = slapos.recipe.template
url = ${:_profile_base_location_}/index.html
md5sum = b5794ac8b10ed90173ad566e6e324b35
output = ${buildout:directory}/index.html
mode = 0644
[caddy]
recipe = slapos.recipe.cmmi
path = ${caddy-repository:location}
go = ${gowork:golang}/bin/go
configure-command = :
make-targets =
make-binary = cd ${:path}/caddy && ${:go} install -v
environment =
PATH=${pkgconfig:location}/bin:${gowork:golang}/bin:${buildout:bin-directory}:%(PATH)s
GOPATH=${gopath:directory}
output = ${gopath:bin}/caddy
\ No newline at end of file
stack/caddy/gowork.cfg
0 → 100644
View file @
bcd1612a
# Code generated by gowork-snapshot; DO NOT EDIT.
# list of go git repositories to fetch
[gowork.goinstall]
depends_gitfetch =
${go_github.com_mholt_caddy:recipe}
[go_github.com_mholt_caddy]
<= go-git-package
go.importpath = github.com/mholt/caddy
repository = https://github.com/mholt/caddy.git
revision = v0.10.10-0-gc4dfbb9956
s
oftware
/caddy/index.html
→
s
tack
/caddy/index.html
View file @
bcd1612a
File moved
s
oftware
/caddy/instance-caddy.cfg.in
→
s
tack
/caddy/instance-caddy.cfg.in
View file @
bcd1612a
File moved
s
oftware
/caddy/instance.cfg.in
→
s
tack
/caddy/instance.cfg.in
View file @
bcd1612a
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment