This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerName html5.validate.2000cubits.lab | |
ProxyPass / http://localhost:8888/ | |
ProxyPassReverse / http://localhost:8888/ | |
</VirtualHost> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -------------------------------------------------------------------------- | |
# Installation: | |
# -------------------------------------------------------------------------- | |
# Disable the default configuration and setup new virtual host | |
# $ sudo a2disconf w3c-markup-validator | |
# $ sudo a2ensite validate.2000cubits.lab | |
# $ sudo service apache2 reload | |
# -------------------------------------------------------------------------- | |
# Taken from original distribution: w3c-markup-validator.conf | |
# -------------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: html5-validator | |
# Required-Start: $remote_fs $syslog | |
# Required-Stop: $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: HTML5 validator service | |
# Description: HTML5 validator service using validator.nu engine |