diff options
Diffstat (limited to 'abs/core/apache/httpd.service')
-rw-r--r-- | abs/core/apache/httpd.service | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/abs/core/apache/httpd.service b/abs/core/apache/httpd.service new file mode 100644 index 0000000..247e28f --- /dev/null +++ b/abs/core/apache/httpd.service @@ -0,0 +1,15 @@ +[Unit] +Description=Apache Web Server +After=network.target remote-fs.target nss-lookup.target + +[Service] +Type=forking +PIDFile=/run/httpd/httpd.pid +ExecStart=/usr/bin/apachectl start +ExecStop=/usr/bin/apachectl graceful-stop +ExecReload=/usr/bin/apachectl graceful +PrivateTmp=true +LimitNOFILE=infinity + +[Install] +WantedBy=multi-user.target |