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


Skip to content
  • 5 Votes
    13 Posts
    1k Views
    GengarG
    Ok I did it and it works. @rstockm FYI, here is how I did it : Install LAMP and open the terminal Cd to the web root directory cd /app/data/public Download the Latest LinkStack Release LATEST_URL=$(curl -s https://api.github.com/repos/LinkStackOrg/LinkStack/releases/latest \ | grep "browser_download_url" \ | grep "linkstack.zip" \ | cut -d '"' -f 4) wget -O linkstack.zip "$LATEST_URL" unzip -o linkstack.zip rm linkstack.zip Remove Cloudron’s Default index.php rm index.php Fix folder structure LinkStack is extracted inside a folder named linkstack/. Move everything to the real web root: mv linkstack/* ./ mv linkstack/.* ./ 2>/dev/null || true rmdir linkstack Fix permissions chown -R www-data:www-data /app/data/public Restart the app in Cloudron Open the URL and follow the LinkStack setup installation guide.
  • 3 Votes
    1 Posts
    284 Views
    No one has replied
  • Cloudron Tutorials on Fireship?

    Discuss fireship cloudron tutorial lesson course
    3
    3 Votes
    3 Posts
    1k Views
    robiR
    It looks like any of the Firebase tutorials can be used on Cloudron by replacing Firebase with NocoDB or Baserow for a fully self hosted setup. @LoudLemur To your point, someone could create ShipOn.Cloudron.io and actually implement such solutions using Cloudron Apps, showing how or even deploying saved backups for a fast starting point. Fun and
  • 5 Votes
    17 Posts
    4k Views
    JOduMonTJ
    @loudlemur said in Monkey See, Monkey Do: Cloudron Video Explainers: RTFM Let’s make RTFM stand for Read the Friendly Manual or better make a new acronym such as WTFV or WTT for Watch the Tuto. @privsec said in Monkey See, Monkey Do: Cloudron Video Explainers: How to properly setup/secure your server to a high level of protection For me, the highest level of protection is a server without access to the internet; then more realistically it is a server with access to the internet but where all the services are behind a VPN; such as OpenVPN, WireGuard, ...). With a server open to the world, you are at the mercy of the developers (the one who develop the application such as Nextcloud, WordPress, ...)
  • 8 Votes
    24 Posts
    6k Views
    BrutalBirdieB
    @infogulch RTFM myself nice catch, thanks for that.