I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
# Laravel queue worker using systemd | |
# ---------------------------------- | |
# | |
# /etc/systemd/system/laravel-queues-high-and-default.service | |
# | |
# run this command to enable service: | |
# systemctl daemon-reload | |
# systemctl enable laravel-queues-high-and-default.service | |
# systemctl start laravel-queues-high-and-default.service |
# Laravel laravel-echo-server worker using systemd | |
# ---------------------------------- | |
# | |
# /etc/systemd/system/laravel-echo-server.service | |
# | |
# run this command to enable service: | |
# systemctl daemon-reload | |
# systemctl enable laravel-echo-server.service | |
# systemctl start laravel-echo-server.service |
[program:laravel-echo-server-sodevb] | |
process_name=%(program_name)s_%(process_num)02d | |
directory=/var/www/servername/html/base | |
command=/usr/bin/laravel-echo-server start | |
autostart=true | |
autorestart=true | |
user=root | |
numprocs=1 | |
priority=999 |