git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
path: root/site/role/manifests/example.pp
diff options
context:
space:
mode:2015-08-31 13:20:43 -0700
committermail_redacted_for_web 2015-08-31 13:20:43 -0700
commit869a5c3aa974b53e2f7f4c8fd8ab01fab0420f6d (patch)
treed18f8c5e38ad8ab14c1b601b307a187aee2404bb /site/role/manifests/example.pp
parent2e457d5c0ee8c8008bde68b6abd1b8b2fe2a6911 (diff)
downloadcontrol-repo-template-869a5c3aa974b53e2f7f4c8fd8ab01fab0420f6d.tar.bz2
Update file permsissions to be 755 on scripts
Diffstat (limited to 'site/role/manifests/example.pp')
0 files changed, 0 insertions, 0 deletions
e.Function */ .highlight .nn { color: #00aaaa; text-decoration: underline } /* Name.Namespace */ .highlight .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #aa0000 } /* Name.Variable */ .highlight .ow { color: #0000aa } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #009999 } /* Literal.Number.Bin */ .highlight .mf { color: #009999 } /* Literal.Number.Float */ .highlight .mh { color: #009999 } /* Literal.Number.Hex */ .highlight .mi { color: #009999 } /* Literal.Number.Integer */ .highlight .mo { color: #009999 } /* Literal.Number.Oct */ .highlight .sa { color: #aa5500 } /* Literal.String.Affix */ .highlight .sb { color: #aa5500 } /* Literal.String.Backtick */ .highlight .sc { color: #aa5500 } /* Literal.String.Char */ .highlight .dl { color: #aa5500 } /* Literal.String.Delimiter */ .highlight .sd { color: #aa5500 } /* Literal.String.Doc */ .highlight .s2 { color: #aa5500 } /* Literal.String.Double */ .highlight .se { color: #aa5500 } /* Literal.String.Escape */ .highlight .sh { color: #aa5500 } /* Literal.String.Heredoc */ .highlight .si { color: #aa5500 } /* Literal.String.Interpol */ .highlight .sx { color: #aa5500 } /* Literal.String.Other */ .highlight .sr { color: #009999 } /* Literal.String.Regex */ .highlight .s1 { color: #aa5500 } /* Literal.String.Single */ .highlight .ss { color: #0000aa } /* Literal.String.Symbol */ .highlight .bp { color: #00aaaa } /* Name.Builtin.Pseudo */ .highlight .fm { color: #00aa00 } /* Name.Function.Magic */ .highlight .vc { color: #aa0000 } /* Name.Variable.Class */ .highlight .vg { color: #aa0000 } /* Name.Variable.Global */ .highlight .vi { color: #aa0000 } /* Name.Variable.Instance */ .highlight .vm { color: #aa0000 } /* Name.Variable.Magic */ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
#vim:syntax=apache

<IfModule mod_ssl.c>
<VirtualHost *:80>
	ServerName git.lirion.de
	ServerAlias git.lirion.de
	ServerSignature Off

	RewriteEngine on
	RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
	RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
	RewriteCond %{HTTPS} !=on
	RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [NE,R,L]
</VirtualHost>
<VirtualHost *:443>
	header set Public-Key-Pins 'pin-sha256="NxMynxRVjjSnl8BnON+6WwexY53HOyKtctua48Am6xA=";pin-sha256="8cwqjzxOlLuW9OGaHAj5GG6DCgZdXEd+OB9UJPWV9KE=";max-age=2419200;'
	ServerAdmin mail_redacted_for_web
	ServerName git.lirion.de
	ServerAlias git.lirion.de git.lirion.net
	# not my true DocRoot. Remember to replace this, and pay respect to the FHS, kids!
	DocumentRoot "/www/cgit"

	<Directory "/www/cgit">
		AllowOverride None
		Options ExecCGI FollowSymlinks
		Order allow,deny
		Allow from all
	</Directory>

	Alias /cgit.css "/www/cgit/cgit.css"
	Alias /cgit.png "/www/cgit/cgit.png"
	Alias /favicon.ico "/www/cgit/favicon.ico"
	Alias /assets "/www/cgit/assets"
	Alias /fonts "/www/cgit/fonts"
	ScriptAlias / "/usr/lib/cgit/cgit.cgi/"

	ErrorLog ${APACHE_LOG_DIR}/git.lirion.de-error.log
	LogLevel warn
	CustomLog ${APACHE_LOG_DIR}/git.lirion.de-access.log combined
	SSLEngine on
	# same as above - this is not the true entry. Adjust!
	SSLCertificateKeyFile	/ssl/private/git.lirion.de.key
	SSLCertificateFile	/ssl/public/git.lirion.de-chain.pem
	<FilesMatch "\.(cgi|shtml|phtml|php)$">
		SSLOptions +StdEnvVars
	</FilesMatch>
	<Directory /usr/lib/cgi-bin>
		SSLOptions +StdEnvVars
	</Directory>
	BrowserMatch "MSIE [2-6]" \
		nokeepalive ssl-unclean-shutdown \
		downgrade-1.0 force-response-1.0
	# MSIE 7 and newer should be able to use keepalive
	BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
</VirtualHost>
</IfModule>