配置 Gogs 开机自动启动
Posted starudream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置 Gogs 开机自动启动相关的知识,希望对你有一定的参考价值。
将 scripts/systemd/gogs.service
文件复制到 /lib/systemd/system
。
默认配置:
[Unit]
Description=Gogs
After=syslog.target
After=network.target
After=mariadb.service mysqld.service postgresql.service memcached.service redis.service
[Service]
# Modify these two values and uncomment them if you have
# repos with lots of files and get an HTTP error 500 because
# of that
###
#LimitMEMLOCK=infinity
#LimitNOFILE=65535
Type=simple
User=git
Group=git
WorkingDirectory=/home/git/gogs
ExecStart=/home/git/gogs/gogs web
Restart=always
Environment=USER=git HOME=/home/git
[Install]
WantedBy=multi-user.target
修改上面的 WorkingDirectory
ExecStart
和 HOME
后面的路径。
以上是关于配置 Gogs 开机自动启动的主要内容,如果未能解决你的问题,请参考以下文章