You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gitea.service 558B

1234567891011121314151617181920212223242526
  1. [Unit]
  2. Description=Gitea (Git with a cup of tea)
  3. After=syslog.target
  4. After=network.target
  5. #After=mysqld.service
  6. #After=postgresql.service
  7. #After=memcached.service
  8. #After=redis.service
  9. [Service]
  10. # Modify these two values and uncomment them if you have
  11. # repos with lots of files and get an HTTP error 500 because
  12. # of that
  13. ###
  14. #LimitMEMLOCK=infinity
  15. #LimitNOFILE=65535
  16. Type=simple
  17. User=git
  18. Group=git
  19. WorkingDirectory=/home/git/gitea
  20. ExecStart=/home/git/gitea/gitea web
  21. Restart=always
  22. Environment=USER=git HOME=/home/git
  23. [Install]
  24. WantedBy=multi-user.target