Bitnami Upgrade to 7.0

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bradaks
    Active Community Member
    • Aug 2017
    • 251

    Bitnami Upgrade to 7.0

    I am having a really tough time trying to upgrade to 7.0 with Bitnami. Has anyone been able to update the apache files correctly to get it to load properly?

    Everything I have tried ends in a 404 error or just a display of the copyright.

    Here is what the current conf file looks like:

    Code:
    <VirtualHost 127.0.0.1:443 _default_:443>
    ServerAlias *
    SSLEngine on
    SSLCertificateFile "/opt/bitnami/apache/conf/1.com.crt"
    SSLCertificateKeyFile "/opt/bitnami/apache/conf/1.com.key"
    DocumentRoot /opt/bitnami/espocrm
    # BEGIN: Configuration for letsencrypt
    Include "/opt/bitnami/apps/letsencrypt/conf/httpd-prefix.conf"
    # END: Configuration for letsencrypt
    # BEGIN: Support domain renewal when using mod_proxy without Location
    <IfModule mod_proxy.c>
    ProxyPass /.well-known !
    </IfModule>
    # END: Support domain renewal when using mod_proxy without Location
    # BEGIN: Enable non-www to www redirection
    RewriteEngine On
    RewriteCond %{HTTP_HOST} !^www\. [NC]
    RewriteCond %{HTTP_HOST} !^localhost
    RewriteCond %{HTTP_HOST} !^[0-9]+.[0-9]+.[0-9]+.[0-9]+(:[0-9]+)?$
    RewriteCond %{REQUEST_URI} !^/\.well-known
    RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [R=permanent,L]
    # END: Enable non-www to www redirection
    <Directory "/opt/bitnami/espocrm">
    Options -Indexes +FollowSymLinks -MultiViews
    AllowOverride All
    Require all granted
    </Directory>
    Include "/opt/bitnami/apache/conf/vhosts/htaccess/espocrm-htaccess.conf"
    # BEGIN: Support domain renewal when using mod_proxy within Location
    <Location /.well-known>
    <IfModule mod_proxy.c>
    ProxyPass !
    </IfModule>
    </Location>
    # END: Support domain renewal when using mod_proxy within Location
    </VirtualHost>
    Thanks for the great update! Cannot wait to explore the new opportunities.
  • esforim
    Active Community Member
    • Jan 2020
    • 2204

    #2
    Post the logs...?

    Comment

    • bradaks
      Active Community Member
      • Aug 2017
      • 251

      #3
      No log errors. The problem is I cannot figure out where to put the /public as the document root and alias. It just doesnt seem to work no matter where I put it in the apache conf file.

      Comment

      Working...