[Pi 4 – 4GB] Setup as OpenVPN and Github runner & staging and more

  • Use Raspberry Pi OS – 32 bit ( Not full desktop – which so heavy )
  • Complete install wizard than restart

Enable remote thing

  • SSH
  • VNC

Install required packages

  • Webmin
    • Update everything
    • Change to Gray sidebar
      • git is required
  • Samba
    • Via Webmin
  • Github

Install Utilities

Install Development

sudo apt install mariadb-server redis-server redis redis-tools

sudo apt install supervisor

Install composer

Config Mariadb

GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
[mysqld]
skip-networking=0
skip-bind-address

Config Github SSH & Runner

Web development

sudo apt install php8.0-fpm nginx
server {
        listen 8080 default_server;
        listen [::]:8080 default_server;

        # SSL configuration
        #
        # listen 443 ssl default_server;
        # listen [::]:443 ssl default_server;
        #
        # Note: You should disable gzip for SSL traffic.
        # See: https://bugs.debian.org/773332
        #
        # Read up on ssl_ciphers to ensure a secure configuration.
        # See: https://bugs.debian.org/765782
        #
        # Self signed certs generated by the ssl-cert package
        # Don't use them in a production server!
        #
        # include snippets/snakeoil.conf;

        root /var/www/html;

        # Add index.php to the list if you are using PHP
        index index.html index.htm index.nginx-debian.html index.php;

        server_name _;

        location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to displaying a 404.
                #try_files $uri $uri/ =404;
try_files $uri $uri/ /index.php?$query_string;
        }

        # pass PHP scripts to FastCGI server
        #
        location ~ \.php$ {
                include snippets/fastcgi-php.conf;
        #
        #       # With php-fpm (or other unix sockets):
                fastcgi_pass unix:/run/php/php8.0-fpm.sock;
        #       # With php-cgi (or other tcp sockets):
        #       fastcgi_pass 127.0.0.1:9000;
        }

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        location ~ /\.ht {
                deny all;
        }
}

Install Torrent Client

sudo apt install qbittorrent

Supervisor

[program:xcrawler]
process_name=%(program_name)s
command=php /home/pi/XCrawler/artisan horizon
autostart=true
autorestart=true
user=pi
redirect_stderr=true
stdout_logfile=/home/pi/XCrawler/horizon.log
stopwaitsecs=3600
sudo supervisorctl reread

sudo supervisorctl update

sudo supervisorctl start horizon

Leave a Reply

Please log in using one of these methods to post your comment:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Up ↑

%d bloggers like this: