Last active
February 14, 2019 23:43
-
-
Save brunopadz/57dbd61a61b286365593846aa2b19c6d to your computer and use it in GitHub Desktop.
Kong API Gateway systemd config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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