Advanced Search
Search Results
92 total results found
Links
http://dstarportugal.com/novo/index.php
BMW
Mechanics
Engine swap
engine swap
Turbo MFS build
mfs
Electronics
CAN BUS
CAN BUS Data logger https://www.reddit.com/r/CarHacking/comments/1dgc1cr/bmw_e46_canbus/ https://github.com/handmade0octopus/ESP32-TWAI-CAN https://www.youtube.com/watch?app=desktop&v=Se2KCVyD7CM Display https://bimmersport.co.nz/topic/67835-custom-digita...
Laravel+Metronic
NPM INSTALL
Tipos de erro:sh: 1: mix: Permission deniedchmod +x /var/www/my4.dei.uc.pt/public_html/vendor/h4cc/wkhtmltopdf-amd64/bin/wkhtmltopdf-amd64ou chmod -R a+x node_modules
IT
IT
Apache
Reverse proxy
Some apache modules have to be enabled: sudo a2enmod ssl sudo a2enmod proxy sudo a2enmod proxy_balancer sudo a2enmod proxy_http Virtual hosts files have to be configured <VirtualHost *:*> ProxyPreserveHost On ProxyPass "/" "http://192.168.111.2/...
Basic authentication
To protect some directory with basic authentication we have to edit the virtual host file and add some configurations like this: <Directory /home/someuser/somesite/public_html> AuthType Basic AuthName "Authentication Required" AuthUserFile "/home/s...
HTTPS (SSL)
add-apt-repository ppa:certbot/certbot apt install python-certbot-apache certbot --apache -d your_domain -d www.your_domain https://www.digitalocean.com/community/tutorials/how-to-secure-apache-with-let-s-encrypt-on-ubuntu-18-04-pt Adding subdomain to exis...
Git
http://rogerdudler.github.io/git-guide/ Approve user and set it admin via gitlab-rails root@vps02:~# gitlab-rails console -e production -------------------------------------------------------------------------------- Ruby: ruby 3.2.5 (2024-07-26 re...
Linux Administration
Users and groups
Adding an existing user to an existing group usermod -a -G theExampleGroup theExampleUser Changing the primary group of an existing user usermod -g theExampleGroup theExampleUser See wich groups the user belongs to groups theExampleUser Add an existing user to...