coreos-home-server/config/service/nginx/systemd/nginx.service

19 lines
619 B
SYSTEMD
Raw Normal View History

[Unit]
Description=NGINX web server
Wants=container-build@%N.service
After=container-build@%N.service
[Service]
Restart=always
ExecStart=/bin/podman run --replace --pull never --name %N --net internal \
--publish 80:80 --publish 443:443 \
--volume nginx-conf:/etc/nginx/conf.d:z \
--volume letsencrypt:/etc/ssl/private:z,rshared,ro \
localhost/%N:latest
ExecStop=/bin/podman stop --time 10 %N
ExecStopPost=/bin/podman rm --force %N
ExecReload=/bin/podman exec %N %N -s reload
[Install]
WantedBy=multi-user.target