- 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
Install Utilities
- PiVPN
- PiHole
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
- https://github.com/jooservices/XCrawler/settings/actions/runners/new?arch=arm&os=linux
- https://docs.github.com/en/actions/hosting-your-own-runners/configuring-the-self-hosted-runner-application-as-a-service
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