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
Labels
Merge Requests
107
Merge Requests
107
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
slapos
Commits
22c75bb7
Commit
22c75bb7
authored
Apr 25, 2023
by
Alain Takoudjou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stack/lamp: fix parameter not defined
parent
821cb458
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
stack/lamp/apache.conf.in
stack/lamp/apache.conf.in
+2
-2
stack/lamp/buildout.hash.cfg
stack/lamp/buildout.hash.cfg
+1
-1
No files found.
stack/lamp/apache.conf.in
View file @
22c75bb7
...
...
@@ -82,7 +82,7 @@ LoadModule rewrite_module modules/mod_rewrite.so
LoadModule headers_module modules/mod_headers.so
LoadModule deflate_module modules/mod_deflate.so
LoadModule filter_module modules/mod_filter.so
LoadModule php{{ '_module modules/libphp' if parameter_dict
['enable-php8']
else '7_module modules/libphp7' }}.so
{% for module in parameter_dict
['php-module-list']
.split('\n') -%}
LoadModule php{{ '_module modules/libphp' if parameter_dict
.get('enable-php8')
else '7_module modules/libphp7' }}.so
{% for module in parameter_dict
.get('php-module-list', '')
.split('\n') -%}
LoadModule {{ module.strip() }}
{% endfor -%}
stack/lamp/buildout.hash.cfg
View file @
22c75bb7
...
...
@@ -26,7 +26,7 @@ md5sum = de1f450a80547d12334b712016138078
[template-apache.conf]
filename = apache.conf.in
md5sum =
fe63dd5039428f4ee451bef98ccfaa2e
md5sum =
cb847466e8438df624a8c0387cc78b97
[template-php.ini]
filename = php.ini.in
...
...
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