Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xavier Thompson
slapos
Commits
afb65a28
Commit
afb65a28
authored
Jun 08, 2011
by
Rafael Monnerat
👻
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add templates (draft and copied from erp5)
parent
7b66de27
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
441 additions
and
0 deletions
+441
-0
slapos/recipe/apache/template/apache.location-snippet.conf.in
...os/recipe/apache/template/apache.location-snippet.conf.in
+5
-0
slapos/recipe/apache/template/apache.ssl-snippet.conf.in
slapos/recipe/apache/template/apache.ssl-snippet.conf.in
+6
-0
slapos/recipe/apache/template/apache.zope.conf.in
slapos/recipe/apache/template/apache.zope.conf.in
+55
-0
slapos/recipe/apache/template/apache.zope.conf.path-protected.in
...recipe/apache/template/apache.zope.conf.path-protected.in
+7
-0
slapos/recipe/apache/template/apache.zope.conf.path.in
slapos/recipe/apache/template/apache.zope.conf.path.in
+5
-0
slapos/recipe/apache/template/logrotate_entry.in
slapos/recipe/apache/template/logrotate_entry.in
+13
-0
slapos/recipe/apache/template/openssl.cnf.ca.in
slapos/recipe/apache/template/openssl.cnf.ca.in
+350
-0
No files found.
slapos/recipe/apache/template/apache.location-snippet.conf.in
0 → 100644
View file @
afb65a28
<Location %(location)s>
Order Deny,Allow
Deny from all
Allow from %(allow_string)s
</Location>
slapos/recipe/apache/template/apache.ssl-snippet.conf.in
0 → 100644
View file @
afb65a28
SSLEngine on
SSLCertificateFile %(login_certificate)s
SSLCertificateKeyFile %(login_key)s
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
slapos/recipe/apache/template/apache.zope.conf.in
0 → 100644
View file @
afb65a28
# Apache configuration file for Zope
# Automatically generated
# Basic server configuration
PidFile "%(pid_file)s"
LockFile "%(lock_file)s"
Listen %(ip)s:%(port)s
ServerAdmin %(server_admin)s
DefaultType text/plain
TypesConfig conf/mime.types
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
# As backend is trusting REMOTE_USER header unset it always
RequestHeader unset REMOTE_USER
# SSL Configuration
%(ssl_snippet)s
# Log configuration
ErrorLog "%(error_log)s"
LogLevel warn
LogFormat "%%h %%{REMOTE_USER}i %%l %%u %%t \"%%r\" %%>s %%b \"%%{Referer}i\" \"%%{User-Agent}i\"" combined
LogFormat "%%h %%{REMOTE_USER}i %%l %%u %%t \"%%r\" %%>s %%b" common
CustomLog "%(access_log)s" common
# Directory protection
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
%(path_enable)s
# Magic of Zope related rewrite
RewriteEngine On
%(rewrite_rule)s
# List of modules
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule version_module modules/mod_version.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule ssl_module modules/mod_ssl.so
LoadModule mime_module modules/mod_mime.so
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule headers_module modules/mod_headers.so
LoadModule antiloris_module modules/mod_antiloris.so
slapos/recipe/apache/template/apache.zope.conf.path-protected.in
0 → 100644
View file @
afb65a28
# Path protected
<Location %(path)s>
Order Deny,Allow
Deny from all
Allow from %(access_control_string)s
</Location>
slapos/recipe/apache/template/apache.zope.conf.path.in
0 → 100644
View file @
afb65a28
# Path enabled
<Location %(path)s>
Order Allow,Deny
Allow from all
</Location>
slapos/recipe/apache/template/logrotate_entry.in
0 → 100644
View file @
afb65a28
%(file_list)s {
daily
dateext
rotate 30
compress
notifempty
sharedscripts
create
postrotate
%(postrotate)s
endscript
olddir %(olddir)s
}
slapos/recipe/apache/template/openssl.cnf.ca.in
0 → 100644
View file @
afb65a28
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment