Uploaded June 2023 | Updated September 2026, 2 weeks ago
0:00 Intro
1:15 Tech Salaries
2:30 Information Asymmetry
4:05 Dave's Salaries
11:40 Matthew's Salaries
16:00 Job-hopping and salary bumps
17:45 Negotiation Tips
24:00 Dave's worst mistake
27:45 Is job-hopping bad?
30:00 How much should you make?
32:25 Intangible value
35:20 Job switching risk
39:30 Discussion - What do Seniors want from Junior Engineers?
58:18 Review - how to be an amazing engineer
58:55 High-impact skills
1:03:00 Moving to Senior engineer
In this episode, I talk with Matthew and Justin about tech salaries and what makes great engineers (including more Junior people).
I'm writing a book! Pre-ordering helps me out in a very direct way. The Software Developer's Guide to Linux: A practical, no-nonsense guide to using the Linux command line and utilities as a software developer: amazon.com/Software-Developers-Guide-Linux-no-nonsense-ebook/dp/B0BG2NV7FS
Some of Matthew's (awesome) YouTube videos:
Troubleshooting TLS: youtube.com/watch?v=R-4TVHQK2b4
A Practical Terraform Intro: youtube.com/watch?v=H0EQR3LGRz0
My New Packer Course: udemy.com/course/practical-packer-learn-hashicorp-packer-with-a-real-project/?referralCode=8C43A58B4A102EED5785
My OG Linux Project Course: udemy.com/course/hands-on-linux-self-hosted-wordpress-for-linux-beginners/?referralCode=19C0A7DEE2FD53C9C09D
0:00 Intro
1:15 Tech Salaries
2:30 Information Asymmetry
4:05 Dave's Salaries
11:40 Matthew's Salaries
16:00 Job-hopping and salary bumps
17:45 Negotiation Tips
24:00 Dave's worst mistake
27:45 Is job-hopping bad?
30:00 How much should you make?
32:25 Intangible value
35:20 Job switching risk
39:30 Discussion - What do Seniors want from Junior Engineers?
58:18 Review - how to be an amazing engineer
58:55 High-impact skills
1:03:00 Moving to Senior engineer
In this episode, I talk with Matthew and Justin about tech salaries and what makes great engineers (including more Junior people).
I'm writing a book! Pre-ordering helps me out in a very direct way. The Software Developer's Guide to Linux: A practical, no-nonsense guide to using the Linux command line and utilities as a software developer: amazon.com/Software-Developers-Guide-Linux-no-nonsense-ebook/dp/B0BG2NV7FS
Some of Matthew's (awesome) YouTube videos:
Troubleshooting TLS: youtube.com/watch?v=R-4TVHQK2b4
A Practical Terraform Intro: youtube.com/watch?v=H0EQR3LGRz0
My New Packer Course: udemy.com/course/practical-packer-learn-hashicorp-packer-with-a-real-project/?referralCode=8C43A58B4A102EED5785
My OG Linux Project Course: udemy.com/course/hands-on-linux-self-hosted-wordpress-for-linux-beginners/?referralCode=19C0A7DEE2FD53C9C09D










![Web Server Project 02 Setting up MySQL and PHP
Heres how to get your database and interpreter set up for hosting an application on the LAMP/LEMP stack (Linux / Apache/Nginx / MySQL / PHP).
This is the second of three videos about how to set up a webserver (and a WordPress blog or website on Linux). In this video, Ill show you how to install and configure a MySQL Database. Ill also show you how to set up PHP and php-fpm (our PHP interpreter and the fastcgi process manager) so that nginx can ask PHP to render pages with dynamic content for website visitors.
This video is quick-and-dirty no optimization, only the most basic security precautions, etc...but it should get you started.
Heres the nginx configuration file content for /etc/nginx/sites-available/{yoursite}:
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.php index.html index.htm;
server_name server_domain_name_or_IP;
location / {
try_files $uri $uri/ =404;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ .php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
Full Linux Sysadmin Basics Playlist: https://www.youtube.com/playlist?list=PLtK75qxsQaMLZSo7KL-PmiRarU7hrpnwK
Check out my project-based Linux System Administration course (free sample videos): https://www.udemy.com/hands-on-linux-self-hosted-wordpress-for-linux-beginners/?couponCode=tl35
Patreon: https://www.patreon.com/tutorialinux
Official Site: https://tutorialinux.com/
Twitter: https://twitter.com/tutorialinux
Facebook: https://www.facebook.com/tutorialinux Web Server Project 02 Setting up MySQL and PHP](https://i.ytimg.com/vi/V5XyjbUsYE8/mqdefault.jpg)