Нема описа
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.

etc_systemd_system_commento.j2 997B

12345678910111213141516171819202122232425
  1. [Unit]
  2. Description=Commento daemon service
  3. After=network.target postgresql.service
  4. [Service]
  5. Type=simple
  6. User={{ main_user_name }}
  7. Restart=always
  8. RestartSec=3
  9. WorkingDirectory=/home/{{ main_user_name }}/commento
  10. ExecStart=/home/{{ main_user_name }}/commento/commento
  11. Environment=COMMENTO_ORIGIN=https://{{ commento_subdomain }}.{{ domain }}
  12. Environment=COMMENTO_PORT={{ commento_internal_port }}
  13. Environment=COMMENTO_POSTGRES=postgres://{{ commento_db_username }}:{{ commento_db_password }}@localhost:5432/{{ commento_db_database }}?sslmode=disable
  14. Environment=COMMENTO_STATIC=/home/{{ main_user_name }}/commento
  15. Environment=COMMENTO_BIND_ADDRESS=127.0.0.1
  16. Environment=COMMENTO_SMTP_HOST=localhost
  17. Environment=COMMENTO_SMTP_PORT=25
  18. Environment=COMMENTO_SMTP_USERNAME=example@gmail.com
  19. Environment=COMMENTO_SMTP_PASSWORD=hunter2
  20. Environment=COMMENTO_SMTP_FROM_ADDRESS=no-reply@{{ commento_subdomain }}.{{ domain }}
  21. Environment=COMMENTO_FORBID_NEW_OWNERS=true
  22. [Install]
  23. WantedBy=multi-user.target