Unable to enable certain modules
-
When trying to enable the
ssl
module, using:a2enmod ssl
, i'm running into this:root@451e4844-.......6e3e69d:/app/code# a2enmod ssl Considering dependency setenvif for ssl: Module setenvif already enabled Considering dependency mime for ssl: Module mime already enabled Considering dependency socache_shmcb for ssl: Enabling module socache_shmcb. Could not create /etc/apache2/mods-enabled/socache_shmcb.load: Read-only file system
even though, the
socache_shmcb
module does seem to be available, as i can see it in/etc/apache2/mods-available/
How to resolve this situation, as i need to enable proxying of bot requests to a prerendering service, in the
.htaccess
file?RewriteRule ^(.*)$ https://service.prerender.io/%{REQUEST_SCHEME}://%{HTTP_HOST}/$1 [P,L]
-
@girish said in Unable to enable certain modules:
mod_ssl is something else - https://httpd.apache.org/docs/current/mod/mod_ssl.html . Can you check or tell us why you need this?
Hi @girish
I need the
mod_ssl
because i found that the above mentionedRewriteRule
to anhttps
url doesn't work, unlessmod_ssl
is enabled. -
@shrey said in Unable to enable certain modules:
RewriteRule ^(.*)$ https://service.prerender.io/%{REQUEST_SCHEME}://%{HTTP_HOST}/$1 [P,L]
Is this even correct? there are two ":" . not an expert but something seems off here
-