diff --git a/systemd/authentic_idp.service b/systemd/authentic_idp.service new file mode 100644 index 0000000..13e4b7a --- /dev/null +++ b/systemd/authentic_idp.service @@ -0,0 +1,12 @@ +[Unit] +Description=POC authentic Identity Provider +After=network.target + +[Service] +User=root +Group=root +WorkingDirectory=/home/pmarillonnet/devel/authentic.deployed +ExecStart=/usr/bin/gunicorn authentic2.wsgi --bind unix:/var/run/authentic2/authentic2.sock + +[Install] +WantedBy=default.target diff --git a/systemd/passerelle.service b/systemd/passerelle.service new file mode 100644 index 0000000..2bd940c --- /dev/null +++ b/systemd/passerelle.service @@ -0,0 +1,12 @@ +[Unit] +Description=POC Passerelle connectors +After=network.target + +[Service] +User=pmarillonnet +Group=pmarillonnet +WorkingDirectory=/home/pmarillonnet/Documents/passerelle +ExecStart=/usr/bin/gunicorn passerelle.wsgi --bind unix:/var/run/passerelle/passerelle.sock + +[Install] +WantedBy=default.target diff --git a/systemd/sp_sso.service b/systemd/sp_sso.service new file mode 100644 index 0000000..71a04fb --- /dev/null +++ b/systemd/sp_sso.service @@ -0,0 +1,12 @@ +[Unit] +Description=POC Service Provider +After=network.target + +[Service] +User=pmarillonnet +Group=pmarillonnet +WorkingDirectory=/home/pmarillonnet/Documents/paul-synchro/django/sp_sso/ +ExecStart=/usr/bin/gunicorn sp_sso.wsgi --bind unix:/var/run/sp_sso/sp_sso.sock + +[Install] +WantedBy=default.target diff --git a/systemd/wcs_deployed.service b/systemd/wcs_deployed.service new file mode 100644 index 0000000..70e239d --- /dev/null +++ b/systemd/wcs_deployed.service @@ -0,0 +1,12 @@ +[Unit] +Description=POC w.c.s. form service +After=network.target + +[Service] +User=root +Group=root +WorkingDirectory=/home/pmarillonnet/devel/wcs +ExecStart=/home/pmarillonnet/devel/wcs/wcsctl.py start + +[Install] +WantedBy=default.target