mysql gentoo mysql MySQL Primary-Replica Replication on Gentoo Linux MySQL Primary-Replica Replication on Gentoo Linux Primary: 192.168.1.10 Replica: 192.168.1.11 Primary – my.cnf [mysqld] server-id = 1 log_bin = /var/log/mysql/mysql-bin binlog_format = ROW binlog_expire_logs_seconds = 604800 CREATE USER 'replicator'@'192.168.1.11' IDENTIFIED WITH... Read more → 7th May 2026
mysql netbsd mysql MySQL Primary-Replica Replication on NetBSD 10 MySQL Primary-Replica Replication on NetBSD 10 Primary: 192.168.1.10 Replica: 192.168.1.11 Primary – my.cnf [mysqld] server-id = 1 log_bin = /var/log/mysql/mysql-bin binlog_format = ROW binlog_expire_logs_seconds = 604800 CREATE USER 'replicator'@'192.168.1.11' IDENTIFIED WITH my... Read more → 7th May 2026
mysql openbsd mysql MySQL Primary-Replica Replication on OpenBSD 7.5 MySQL Primary-Replica Replication on OpenBSD 7.5 Primary: 192.168.1.10 Replica: 192.168.1.11 Primary – my.cnf [mysqld] server-id = 1 log_bin = /var/log/mysql/mysql-bin binlog_format = ROW binlog_expire_logs_seconds = 604800 CREATE USER 'replicator'@'192.168.1.11' IDENTIFIED WITH... Read more → 7th May 2026
mysql rhel mysql MySQL Primary-Replica Replication on RHEL 9 MySQL Primary-Replica Replication on RHEL 9 Primary: 192.168.1.10 Replica: 192.168.1.11 Primary – my.cnf [mysqld] server-id = 1 log_bin = /var/log/mysql/mysql-bin binlog_format = ROW binlog_expire_logs_seconds = 604800 CREATE USER 'replicator'@'192.168.1.11' IDENTIFIED WITH mysql... Read more → 7th May 2026
mysql ubuntu mysql MySQL Primary-Replica Replication on Ubuntu 24.04 MySQL Primary-Replica Replication on Ubuntu 24.04 Primary: 192.168.1.10 Replica: 192.168.1.11 Primary – my.cnf [mysqld] server-id = 1 log_bin = /var/log/mysql/mysql-bin binlog_format = ROW binlog_expire_logs_seconds = 604800 CREATE USER 'replicator'@'192.168.1.11' IDENTIFIED WITH... Read more → 7th May 2026
nagios centos Nagios 4.4 setup on centos Install Dev Tools, PHP, Nginx sudo yum install nginx php php-fpm php-common gcc glibc glibc-common gd gd-devel make net-snmp unzip -y sudo yum groupinstall 'Development Tools' -y Nginx – Nagios Configuration cd /etc/nginx/conf.d sudo vi nagios.conf Nginx - Nagios Configuration with P... Read more → 20th Jan 2019
ubuntu nginx ajenti Nginx and Ajenti on ubuntu Install Ajenti apt-get update wget http://repo.ajenti.org/debian/key -O- | apt-key add - echo "deb http://repo.ajenti.org/ng/debian main main ubuntu" >> /etc/apt/sources.list apt-get update apt-get install ajenti service ajenti restart Install Ajenti-v apt-get install ajenti-v ajenti... Read more → 20th Jan 2019
ubuntu let's encrypt nginx Nginx let's encrypt with A+ SSL on ubuntu There are two modes when you don't want Certbot to edit your configuration: Standalone: replaces the webserver to respond to ACME challenges Webroot: needs your webserver to serve challenges from a known folder. Webroot is better because it doesn't need to replace Nginx (to bind to port... Read more → 6th Mar 2019
nginx almalinux nginx Nginx Load Balancing on AlmaLinux 9 Nginx Load Balancing on AlmaLinux 9 Round-robin (default) upstream myapp { server 192.168.1.10:8080; server 192.168.1.11:8080; server 192.168.1.12:8080; } server { listen 80; server_name lb.example.com; location / { proxy_pass http://myapp; } } Least connections upstr... Read more → 7th May 2026
nginx arch nginx Nginx Load Balancing on Arch Linux Nginx Load Balancing on Arch Linux Round-robin (default) upstream myapp { server 192.168.1.10:8080; server 192.168.1.11:8080; server 192.168.1.12:8080; } server { listen 80; server_name lb.example.com; location / { proxy_pass http://myapp; } } Least connections upstre... Read more → 7th May 2026
nginx debian nginx Nginx Load Balancing on Debian 12 Nginx Load Balancing on Debian 12 Round-robin (default) upstream myapp { server 192.168.1.10:8080; server 192.168.1.11:8080; server 192.168.1.12:8080; } server { listen 80; server_name lb.example.com; location / { proxy_pass http://myapp; } } Least connections upstrea... Read more → 7th May 2026
nginx gentoo nginx Nginx Load Balancing on Gentoo Linux Nginx Load Balancing on Gentoo Linux Round-robin (default) upstream myapp { server 192.168.1.10:8080; server 192.168.1.11:8080; server 192.168.1.12:8080; } server { listen 80; server_name lb.example.com; location / { proxy_pass http://myapp; } } Least connections upst... Read more → 7th May 2026
nginx netbsd nginx Nginx Load Balancing on NetBSD 10 Nginx Load Balancing on NetBSD 10 Round-robin (default) upstream myapp { server 192.168.1.10:8080; server 192.168.1.11:8080; server 192.168.1.12:8080; } server { listen 80; server_name lb.example.com; location / { proxy_pass http://myapp; } } Least connections upstrea... Read more → 7th May 2026
nginx openbsd nginx Nginx Load Balancing on OpenBSD 7.5 Nginx Load Balancing on OpenBSD 7.5 Round-robin (default) upstream myapp { server 192.168.1.10:8080; server 192.168.1.11:8080; server 192.168.1.12:8080; } server { listen 80; server_name lb.example.com; location / { proxy_pass http://myapp; } } Least connections upstr... Read more → 7th May 2026
nginx rhel nginx Nginx Load Balancing on RHEL 9 Nginx Load Balancing on RHEL 9 Round-robin (default) upstream myapp { server 192.168.1.10:8080; server 192.168.1.11:8080; server 192.168.1.12:8080; } server { listen 80; server_name lb.example.com; location / { proxy_pass http://myapp; } } Least connections upstream m... Read more → 7th May 2026
nginx ubuntu nginx Nginx Load Balancing on Ubuntu 24.04 Nginx Load Balancing on Ubuntu 24.04 Round-robin (default) upstream myapp { server 192.168.1.10:8080; server 192.168.1.11:8080; server 192.168.1.12:8080; } server { listen 80; server_name lb.example.com; location / { proxy_pass http://myapp; } } Least connections upst... Read more → 7th May 2026
nginx almalinux nginx Nginx Rate Limiting on AlmaLinux 9 Nginx Rate Limiting on AlmaLinux 9 Define zones in http block http { limit_req_zone $binary_remote_addr zone=api:10m rate=10r/s; limit_req_zone $binary_remote_addr zone=login:10m rate=5r/m; } Apply to locations location /api/ { limit_req zone=api burst=20 nodelay; lim... Read more → 7th May 2026
nginx arch nginx Nginx Rate Limiting on Arch Linux Nginx Rate Limiting on Arch Linux Define zones in http block http { limit_req_zone $binary_remote_addr zone=api:10m rate=10r/s; limit_req_zone $binary_remote_addr zone=login:10m rate=5r/m; } Apply to locations location /api/ { limit_req zone=api burst=20 nodelay; limi... Read more → 7th May 2026
nginx debian nginx Nginx Rate Limiting on Debian 12 Nginx Rate Limiting on Debian 12 Define zones in http block http { limit_req_zone $binary_remote_addr zone=api:10m rate=10r/s; limit_req_zone $binary_remote_addr zone=login:10m rate=5r/m; } Apply to locations location /api/ { limit_req zone=api burst=20 nodelay; limit... Read more → 7th May 2026
nginx gentoo nginx Nginx Rate Limiting on Gentoo Linux Nginx Rate Limiting on Gentoo Linux Define zones in http block http { limit_req_zone $binary_remote_addr zone=api:10m rate=10r/s; limit_req_zone $binary_remote_addr zone=login:10m rate=5r/m; } Apply to locations location /api/ { limit_req zone=api burst=20 nodelay; li... Read more → 7th May 2026
nginx netbsd nginx Nginx Rate Limiting on NetBSD 10 Nginx Rate Limiting on NetBSD 10 Define zones in http block http { limit_req_zone $binary_remote_addr zone=api:10m rate=10r/s; limit_req_zone $binary_remote_addr zone=login:10m rate=5r/m; } Apply to locations location /api/ { limit_req zone=api burst=20 nodelay; limit... Read more → 7th May 2026
nginx openbsd nginx Nginx Rate Limiting on OpenBSD 7.5 Nginx Rate Limiting on OpenBSD 7.5 Define zones in http block http { limit_req_zone $binary_remote_addr zone=api:10m rate=10r/s; limit_req_zone $binary_remote_addr zone=login:10m rate=5r/m; } Apply to locations location /api/ { limit_req zone=api burst=20 nodelay; lim... Read more → 7th May 2026
nginx rhel nginx Nginx Rate Limiting on RHEL 9 Nginx Rate Limiting on RHEL 9 Define zones in http block http { limit_req_zone $binary_remote_addr zone=api:10m rate=10r/s; limit_req_zone $binary_remote_addr zone=login:10m rate=5r/m; } Apply to locations location /api/ { limit_req zone=api burst=20 nodelay; limit_re... Read more → 7th May 2026
nginx ubuntu nginx Nginx Rate Limiting on Ubuntu 24.04 Nginx Rate Limiting on Ubuntu 24.04 Define zones in http block http { limit_req_zone $binary_remote_addr zone=api:10m rate=10r/s; limit_req_zone $binary_remote_addr zone=login:10m rate=5r/m; } Apply to locations location /api/ { limit_req zone=api burst=20 nodelay; li... Read more → 7th May 2026