httpd/httpd.service
Joe Orton ce009f995d complete conversion to systemd, drop init script (#770311)
fix comments in /etc/sysconfig/httpd (#771024)
enable PrivateTmp in service file (#781440)
set LANG=C in /etc/sysconfig/httpd
2012-01-17 13:17:38 +00:00

17 lines
388 B
Desktop File

[Unit]
Description=The Apache HTTP Server (@NAME@ MPM)
After=syslog.target network.target remote-fs.target
[Service]
Type=forking
PIDFile=/var/run/httpd/httpd.pid
EnvironmentFile=/etc/sysconfig/httpd
ExecStart=@EXEC@ $OPTIONS -k start
ExecReload=@EXEC@ $OPTIONS -t
ExecReload=/bin/kill -HUP $MAINPID
ExecStop=@EXEC@ $OPTIONS -k stop
PrivateTmp=true
[Install]
WantedBy=multi-user.target