-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added apache to dynamic apps #90
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @marianabtw, please add a README file, similar to this. Also see the inline comments.
Also copy the local /usr/lib/apache2/modules/
directory into ./etc/apache2/modules
.
# The directory where shm and other runtime files will be stored. | ||
# | ||
|
||
DefaultRuntimeDir ${APACHE_RUN_DIR} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DefaultRuntimeDir ${APACHE_RUN_DIR} | |
DefaultRuntimeDir /etc/apache-rundir |
You can hardcode the env variables into the config file.
Create an empty directory named /etc/apache-rundir
so the server can start.
# identification number when it starts. | ||
# This needs to be set in /etc/apache2/envvars | ||
# | ||
PidFile ${APACHE_PID_FILE} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PidFile ${APACHE_PID_FILE} | |
PidFile <some-file> |
Same as above, add a filename here.
# logged here. If you *do* define an error logfile for a <VirtualHost> | ||
# container, that host's errors will be logged there and not here. | ||
# | ||
ErrorLog ${APACHE_LOG_DIR}/error.log |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ErrorLog ${APACHE_LOG_DIR}/error.log | |
ErrorLog <...>/error.log |
Same as above
No description provided.