For ViM and VSCode.
model<tab>
: defines a modelfield<tab>
: defines a fieldindex<tab>
: defines an indexunique
: defines a unique index
Listen 8080 | |
NameVirtualHost *:8080 | |
<VirtualHost *:8080> | |
ServerName <%= @fqdn %>:8080 | |
SSLEngine on | |
SSLProtocol -ALL +SSLv3 +TLSv1 | |
SSLCipherSuite ALL:!ADH:!RC4:+HIGH:+MEDIUM:!LOW:!SSLv2:!EXP:!RC2 | |
SSLCertificateKeyFile /var/lib/puppet/ssl/private_keys/<%= @fqdn %>.pem |
# Apache configuration for running local browser against a locally running xxxx for manual smartcard testing | |
# Listen 4433 | |
<VirtualHost 127.0.0.1:4433> | |
# Real men use mod_proxy | |
DocumentRoot "/nowhere" | |
ServerName local-apache | |
ServerAdmin [email protected] |
<VirtualHost *:443> | |
ServerName centos.installer | |
DocumentRoot "/var/www" | |
## Directories, there should at least be a declaration for /var/www | |
<Directory "/var/www"> | |
Options SymLinksIfOwnerMatch |