Skip to content

Instantly share code, notes, and snippets.

@brunopadz
Last active February 14, 2019 23:43
Show Gist options
  • Save brunopadz/57dbd61a61b286365593846aa2b19c6d to your computer and use it in GitHub Desktop.
Save brunopadz/57dbd61a61b286365593846aa2b19c6d to your computer and use it in GitHub Desktop.
Kong API Gateway systemd config
[Unit]
Description= kong service
After=syslog.target network.target
[Service]
User=root
Group=root
Type=forking
LimitAS=infinity
LimitRSS=infinity
LimitCORE=infinity
LimitNOFILE=4096
ExecStart=/usr/local/bin/kong start
ExecReload=/usr/local/bin/kong reload
ExecStop=/usr/local/bin/kong stop
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment