Posts
Install ZeroTier in Proxmox
In the previous videos we have already covered :
NetBird Tailscale Twingate With ZeroTier you get more than what these and other Zero-Trust networking vpn replacement systems provide
1. What is ZeroTier ? It’s a software-defined networking service.
ZeroTier can be used for a variety of purposes, including:
Creating secure private networks over the internet Connecting remote offices or devices Enabling remote access to resources Facilitating secure communications for gaming or other applications ZeroTier Overview
Posts
Using Tailscale on Oracle Free for Life Server From Proxmox
We installed Tailscale on our proxmox server For instructions to this please look at last weeks video: We will install Tailscale in our Proxmox server as the Best alternative to our VPN
We register for the free service Google search for : oracle cloud free tier Oracle Cloud Free Tier Signup Cloud Free Tier | Oracle United Kingdom
We create our Free for life Oracle VM Server Login (The URL will be country specific) Google search for : oracle cloud free tier login
Posts
Install Tailscale in Proxmox
What is TailScale Sure! Here are some key points to describe Tailscale:
VPN replacement Service: Replace your VPN with Tailscale Zero Config: It requires minimal configuration, making setup quick and easy. Peer-to-Peer Connections: Establishes direct peer-to-peer connections between devices for efficient and secure communication. Security: Uses WireGuard for encryption, providing robust security for your data. Cross-Platform: Supports multiple operating systems, including Windows, macOS, Linux, iOS, and Android. Zero Trust: Tailscale implements a zero trust security model, leveraging existing identity providers like Google or social media accounts for authentication To get started https://tailscale.
Posts
Getting Started With Firebase
Resources https://firebase.google.com/ \
current tutorial https://www.youtube.com/watch?v=UFD4SP91tSM
Android https://www.youtube.com/watch?v=UFD4SP91tSM
Tools https://favicon.io/ https://www.netlify.com/ https://www.figma.com/ https://fonts.google.com/ https://v2.scrimba.com/build-a-mobile-app-with-firebase-c0g \
Bibliography https://devapo.io/blog/technology/google-firebase-getting-started/ https://fireship.io/lessons/the-ultimate-beginners-guide-to-firebase/ \
Youtube: https://www.youtube.com/watch?v=UFD4SP91tSM https://www.youtube.com/watch?v=ILTo8IvFXJw https://www.youtube.com/watch?v=9zdvmgGsww0&list=PL4cUxeGkcC9jERUGvbudErNCeSZHWUVlb https://www.youtube.com/watch?v=9kRgVxULbag&t=98s https://www.youtube.com/watch?v=7hB2ASYBkXo https://www.youtube.com/watch?v=_p4Hgzm_oNQ&t=120s \
GitHub https://github.com/firebase/firebase-tools https://github.com/kpDemos/simpleDatabase
project links https://console.firebase.google.com
https://ionicframework.com/docs/native/push-notifications
https://firebase.google.com/docs/cloud-messaging/server
https://firebase.google.com/docs/in-app-messaging/get-started?platform=android
https://firebase.google.com/docs/android/setup
Posts
Install Pritunl Zero in Proxmox Using Docker
A. What is Pritunl Pritunl is an open-source software-defined networking (SDN) solution that provides secure remote access to networks and resources. It offers a Zero Trust network architecture, allowing organizations to create secure and scalable networks for remote access and site-to-site connectivity.
Here are some key features and functionalities of Pritunl:
Zero Trust Network: Pritunl follows the Zero Trust security model, which means it assumes that every access attempt, whether internal or external, is a potential threat.
Posts
Install ZeroTier in Proxmox Using Docker
A. What is ZeroTier ZeroTier is a software-defined networking solution that enables the creation of secure virtual networks over the internet. ZeroTier allows devices to communicate as if they were on the same local network, regardless of their physical location. It supports various platforms, including Windows, macOS, Linux, iOS, and Android.
Key features of ZeroTier include: Ease of Use: It’s designed to be user-friendly, with straightforward setup and configuration. Cross-Platform Compatibility: Works across different operating systems and devices.
Posts
Starrocks Quickstart Tutorial Running on Dockage in Portainer
What is Starrocks StarRocks is a parallel processing database. It uses the same MySQL client for basic SQL queries. StarRocks is designed to work with much larger databases than MySQL. StarRocks provides better performance for analytics workloads on large datasets compared to MySQL. It is optimized for handling large-scale distributed analytics workloads. StarRocks achieves high performance and scalability by distributing data and query processing across multiple nodes in a cluster. The docker compose file We will deploy this using Dockage :
Posts
Install Picoshare in a Proxmox Container With Dockge
Use Case Its all about collaboration, Teams, Clubs, Organizations, Home Use You want to leave a file on a server and send a link to it for somone to download The file can have an expiry date for self delete Create the Modified Docker compose file Run this command :
nano compose.yaml Put this in the file :
version: "3.3" services: picoshare: environment: - PORT=4001 - PS_SHARED_SECRET=${PASSWORD} ports: - 4001:4001/tcp volumes: - .
Posts
Install Filestash in Proxmox
Overview of Filestash Filestash is an open-source web-based file manager that allows you to connect to and manage files stored across various backend services and protocols. It provides a clean, modern interface for managing files, supporting services like FTP, SFTP, WebDAV, Dropbox, Google Drive, Amazon S3, and many others.
Key Features Multi-Backend Support: Connect to multiple types of storage backends including cloud services and traditional protocols. Web-Based Interface: Access your files through a web browser with a user-friendly interface.
Posts
Install Nextcloud in Proxmox
References https://nextcloud.com/
Featured Apps https://apps.nextcloud.com/featured
Revised Docker Compose file version: "2" volumes: nextcloud: null db: null services: db: image: mariadb:10.6 restart: always command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW volumes: - db:/var/lib/mysql environment: - MYSQL_ROOT_PASSWORD=Password1234 - MYSQL_PASSWORD=Password1234 - MYSQL_DATABASE=nextcloud - MYSQL_USER=nextcloud app: image: nextcloud restart: always ports: - 9280:80 links: - db volumes: - nextcloud:/var/www/html environment: - MYSQL_PASSWORD=Password1234 - MYSQL_DATABASE=nextcloud - MYSQL_USER=nextcloud - MYSQL_HOST=db networks: {}