mirror of
https://github.com/ohwgiles/laminar.git
synced 2026-03-02 03:40:21 +00:00
move conf file and unit file to etc dir
This commit is contained in:
54
etc/laminar.conf
Normal file
54
etc/laminar.conf
Normal file
@@ -0,0 +1,54 @@
|
||||
###
|
||||
### LAMINAR_HOME
|
||||
###
|
||||
### Root location containing laminar configuration, database,
|
||||
### build workspaces and archive.
|
||||
###
|
||||
### Default: /var/lib/laminar
|
||||
###
|
||||
#LAMINAR_HOME=/var/lib/laminar
|
||||
|
||||
### LAMINAR_BIND_HTTP
|
||||
###
|
||||
### Interface on which laminard will bind to serve the Web UI.
|
||||
### May be of the form IP:PORT, unix:PATH/TO/SOCKET or unix-abstract:NAME
|
||||
###
|
||||
### Default: *:8080
|
||||
###
|
||||
#LAMINAR_BIND_HTTP=*:8080
|
||||
|
||||
### LAMINAR_BIND_RPC
|
||||
###
|
||||
### Interface on which laminard will bind to accept RPC from laminarc.
|
||||
### May be of the form IP:PORT, unix:PATH/TO/SOCKET or unix-abstract:NAME
|
||||
###
|
||||
### Default: unix-abstract:laminar
|
||||
#LAMINAR_BIND_RPC=unix-abstract:laminar
|
||||
|
||||
###
|
||||
### LAMINAR_TITLE
|
||||
###
|
||||
### Page title to show in web frontend
|
||||
###
|
||||
#LAMINAR_TITLE=
|
||||
|
||||
###
|
||||
### LAMINAR_KEEP_RUNDIRS
|
||||
###
|
||||
### Setting this prevents the immediate deletion of job rundirs
|
||||
### $LAMINAR_HOME/run/$JOB/$RUN. Value should be an integer represeting
|
||||
### the number of rundirs to keep.
|
||||
###
|
||||
### Default: 0
|
||||
###
|
||||
#LAMINAR_KEEP_RUNDIRS=0
|
||||
|
||||
###
|
||||
### LAMINAR_ARCHIVE_URL
|
||||
###
|
||||
### Base url used to request artifacts. Laminar can serve build
|
||||
### artifacts (and it will if you leave this unset), but it
|
||||
### uses a very naive and inefficient method. Best to let a real
|
||||
### webserver handle serving those requests.
|
||||
###
|
||||
#LAMINAR_ARCHIVE_URL=http://backbone.example.com/ci/archive
|
||||
11
etc/laminar.service
Normal file
11
etc/laminar.service
Normal file
@@ -0,0 +1,11 @@
|
||||
[Unit]
|
||||
Description=Laminar continuous integration service
|
||||
|
||||
[Service]
|
||||
User=laminar
|
||||
EnvironmentFile=-/etc/laminar.conf
|
||||
ExecStart=/usr/bin/laminard
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
||||
Reference in New Issue
Block a user