Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Using MongoDB instead of MySQL in a LAMP app?

    Moved Solved LAMP lamp
    7
    0 Votes
    7 Posts
    2k Views
    S
    @girish sorry for spamming this old thread. I added a complete new post: https://forum.cloudron.io/topic/4203/git-push-ci-cd-workflow-for-the-lamp-app
  • ionCube PHP Loader not detected

    Moved Solved LAMP lamp
    4
    3
    0 Votes
    4 Posts
    1k Views
    girishG
    @hdavy2002 Pushed an update to fix this now.
  • Shlink on LAMP, APC absent?

    Moved Solved LAMP lamp
    9
    0 Votes
    9 Posts
    3k Views
    yusfY
    Okay, I understand. It's fine by me. The separate admin panel's latest release just renders a blank page for me (locally and on LAMP) ¯_(ツ)_/¯
  • LAMP does not activate locales?

    Moved LAMP lamp
    13
    0 Votes
    13 Posts
    4k Views
    girishG
    @jeau It looks like I closed https://git.cloudron.io/cloudron/lamp-app/issues/14 by mistake and this went off our radar. I have reopened it.
  • Mail from domain is not allowed from your host

    Moved LAMP lamp
    3
    0 Votes
    3 Posts
    1k Views
    girishG
    @mathieuepitech Apps on Cloudron send email with a specific email id and with a SMTP username/password. This is not just a security measure but also prevents misconfigured apps from sending emails with arbitrary domains resulting in your server being blacklisted as a spam bot. The specific email id/mail from that the app will use is the in the app configure dialog. The SMTP credentials for sending email are available as environment variables. In PHP, you can simply use getenv('MAIL_SMTP_SERVER') etc instead of hardcoding the credentials.
  • Where do i find the apache Access Log?

    Moved Solved LAMP lamp
    2
    0 Votes
    2 Posts
    604 Views
    girishG
    @jensbee4 If you click on the logs button in the app icon in the dashboard, you will see the access logs. We log in the combined format - "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"". More information about the format is http://httpd.apache.org/docs/current/mod/mod_log_config.html#customlog
  • Configuring ServerTokens & ServerSignature?

    Moved Solved LAMP lamp
    4
    0 Votes
    4 Posts
    1k Views
    girishG
    @murgero I added it after you asked the question
  • LAMP stack Composer: Cannot require any package, cannot write into cache

    Moved Solved LAMP lamp
    4
    0 Votes
    4 Posts
    1k Views
    girishG
    @jepster We have pushed an update that should make it simpler now. Also updated the docs - https://cloudron.io/documentation/apps/lamp/#running-composer
  • Composer is installed, but cannot require any package

    Moved Solved LAMP lamp
    2
    0 Votes
    2 Posts
    691 Views
    girishG
    Let's discuss this in https://forum.cloudron.io/topic/1700/lamp-stack-composer-cannot-require-any-package-cannot-write-into-cache
  • LAMP App - How to enable mod_expires.c ?

    Moved Solved LAMP lamp
    11
    0 Votes
    11 Posts
    2k Views
    nebulonN
    Yeah the idea was to just setup an oidc client credentials set with a redirect URI for the app, but not actually configuring the lamp stack to also use this. Same as with LDAP credentials. You can test the branch from https://git.cloudron.io/packages/lamp-app/-/tree/oidc-support?ref_type=heads if you know your way around building a custom app. Once installed you have to create an OpenID client in your Cloudron dashboard with /secure/redirect_uri and put the following in /app/data/apache/app.conf: # OIDCRedirectURI is a vanity URL that must point to a path protected by this module but must NOT point to any content OIDCRedirectURI https://<your.lampapp.domain>/secure/redirect_uri OIDCCryptoPassphrase somethingsecret OIDCProviderMetadataURL https://<my.example.com>/.well-known/openid-configuration OIDCClientID <clientId> OIDCClientSecret <secret> Then restart the app and then you may put those two lines in any .htaccess within your public/ folder which you want to protect from public access: AuthType openid-connect Require valid-user
  • redis (on lamp) is stuck due to high memory usage

    Moved Solved LAMP redis lamp memory
    4
    0 Votes
    4 Posts
    2k Views
    nebulonN
    Would be great if you could update this thread with your findings. Also please note that the memory settings for the addons are currently not preserved across app restores or even server reboots. We are working on this fix and you can see the status of it at https://git.cloudron.io/cloudron/box/issues/566