File: groonga-server-http.service

package info (click to toggle)
groonga 15.2.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 171,500 kB
  • sloc: ansic: 772,536; cpp: 51,530; ruby: 40,538; javascript: 10,250; yacc: 7,045; sh: 5,622; python: 2,821; makefile: 1,677
file content (24 lines) | stat: -rw-r--r-- 571 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[Unit]
Description=Groonga full text search HTTP server
Documentation=https://groonga.org/docs/server/package.html#groonga-server-http
Wants=network-online.target
After=network-online.target

[Service]
Type=simple
EnvironmentFile=-/etc/default/groonga-server-http
User=_groonga
Group=groonga
ExecStartPre=-/bin/mkdir -p /run/groonga
ExecStart=/usr/bin/groonga \
  --bind-address $ADDRESS \
  --log-path $LOG_PATH \
  --pid-path $PID_PATH \
  --port $PORT \
  --protocol http \
  --query-log-path $QUERY_LOG_PATH \
  -s \
  $DATABASE

[Install]
WantedBy=multi-user.target