User contributions
From DevOps Notebook
- 13:09, 2 November 2020 diff hist +274 PowerShell
- 12:57, 2 November 2020 diff hist +223 Ls current
- 12:25, 2 November 2020 diff hist +1 Wordpress wp-admin goes into loop when on cloudflare ssl current
- 12:24, 2 November 2020 diff hist +35 Wordpress wp-admin goes into loop when on cloudflare ssl
- 10:48, 2 November 2020 diff hist -9 Wordpress wp-admin goes into loop when on cloudflare ssl
- 10:48, 2 November 2020 diff hist +9 Wordpress wp-admin goes into loop when on cloudflare ssl
- 10:47, 2 November 2020 diff hist +760 N Wordpress wp-admin goes into loop when on cloudflare ssl Created page with "If there is no ssl configured on web server but is enabled in cluodflare,wp-admin often goes in to loop with error: <pre> The page isn’t redirecting properly An error occur..."
- 10:40, 2 November 2020 diff hist +60 N Wordpress issues Created page with "Wordpress wp-admin goes into loop when on cloudflare ssl" current
- 10:40, 2 November 2020 diff hist +20 N Wordpress Created page with "Wordpress issues" current
- 10:39, 2 November 2020 diff hist +13 N Web development Created page with "Wordpress" current
- 10:39, 2 November 2020 diff hist +25 Main Page
- 12:00, 30 October 2020 diff hist +130 N Block referrer url in nginx Created page with "In order to block referral url in nginx, add in server block: <pre> if ($http_referer ~* badwebsite.com) { return 403; } </pre>" current
- 11:58, 30 October 2020 diff hist +37 NGINX
- 10:29, 22 October 2020 diff hist +137 PowerShell
- 09:24, 19 October 2020 diff hist +135 CMD current
- 09:23, 19 October 2020 diff hist +244 N How to check .NET version using PowerShell Created page with "<syntaxhighlight lang="PowerShell"> Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -Recurse | Get-ItemProperty -Name version -EA 0 | Where { $_.PSChildName -..." current
- 09:22, 19 October 2020 diff hist +52 PowerShell
- 16:36, 16 October 2020 diff hist -12 Linux cli snippets
- 16:21, 15 October 2020 diff hist +241 Linux cli snippets
- 16:51, 9 October 2020 diff hist +1 Mysqldump all tables from database in separate files
- 16:50, 9 October 2020 diff hist +343 N Mysqldump all tables from database in separate files Created page with "<syntaxhighlight lang="bash"> #!/bin/bash USER=myuser PASSWORD=mypwd DATABASE=nameofdb for i in $(mysql -uUser -pPASSWORD DATABASE -e "show tables;"|grep -v Tables_in_);do my..."
- 16:48, 9 October 2020 diff hist +62 MySQL Commands snippets
- 19:32, 8 October 2020 diff hist +38 Add MySQL Slave replication delay current
- 19:31, 8 October 2020 diff hist -1 Setting up MySQL Master-Master replication current
- 19:31, 8 October 2020 diff hist +47 N Add MySQL Slave replication delay Created page with "<pre> CHANGE MASTER TO MASTER_DELAY = N; </pre>"
- 19:30, 8 October 2020 diff hist +43 MySQL
- 19:29, 8 October 2020 diff hist +348 N How to allow or remove access to port 80/443 with firewalld in CentOS 8 Created page with "Allow port 80 and port 443 with firewall-cmd <pre> # firewall-cmd --zone=public --add-port=80/tcp --permanent # firewall-cmd --zone=public --add-port=443/tcp --permanent # fir..." current
- 19:27, 8 October 2020 diff hist +162 Linux How To
- 19:05, 8 October 2020 diff hist +49 Create default website in nginx current
- 19:04, 8 October 2020 diff hist +547 N Create default website in nginx Created page with "Default website in nginx is useful to close connection when someone tries to access to webserver via IP<br> which is shown in this example, but you can easily create redirect..."
- 19:00, 8 October 2020 diff hist +41 NGINX
- 18:57, 8 October 2020 diff hist -27 Block particular user agent (bots) in nginx current
- 18:56, 8 October 2020 diff hist +67 Block particular user agent (bots) in nginx
- 18:55, 8 October 2020 diff hist +37 Block empty user agent nginx current
- 18:55, 8 October 2020 diff hist +159 N Block particular user agent (bots) in nginx Created page with "<pre> # case insensitive matching if ($http_user_agent ~* (netcrawl|npbot|malicious|LWP::Simple|BBBike|wget|jorgee)) { return 403; } </pre>"
- 18:54, 8 October 2020 diff hist +53 NGINX
- 18:43, 8 October 2020 diff hist +77 N Block empty user agent nginx Created page with "Add into server block <pre> if ($http_user_agent = "") { return 403; } </pre>"
- 18:37, 8 October 2020 diff hist +38 NGINX
- 18:28, 8 October 2020 diff hist +77 N How to Send a Message to Logged Users in Linux Terminal Created page with "<pre> # wall "System will go down for 4 hours maintenance at 01:00 AM" </pre>" current
- 18:27, 8 October 2020 diff hist +65 Linux How To
- 18:26, 8 October 2020 diff hist +195 Find current
- 18:23, 8 October 2020 diff hist +321 N How To Install memcache module for php 7.x in CentOS 8 Created page with "Enable PowerTools and install dependencies in CentOS 8 <pre> # dnf --enablerepo=PowerTools -y install php-pear php-devel zlib-devel libmemcached-devel make </pre> Install me..." current
- 18:21, 8 October 2020 diff hist +64 Linux How To
- 18:19, 8 October 2020 diff hist +434 N How To Install ImageMagick and PHP Imagick on CentOS 8 Created page with "Install Epel repo in CentOS 8 first and enable PowerTools <pre> # dnf install -y epel-release # dnf config-manager --set-enabled PowerTools </pre> Install ImageMagick package..." current
- 18:14, 8 October 2020 diff hist +64 Linux How To
- 13:29, 8 October 2020 diff hist +670 N Replace firewalld with iptables in CentOS Created page with "Stop and disable firewalld <pre> # systemctl stop firewalld # systemctl disable firewalld </pre> Install and enable iptables service <pre> # yum install iptables-services # s..." current
- 13:25, 8 October 2020 diff hist +50 Linux How To
- 13:23, 8 October 2020 diff hist +8 Ls
- 13:22, 8 October 2020 diff hist +130 Find
- 13:21, 8 October 2020 diff hist +255 N Ls Created page with "Linux sort files by size with ls <pre> # ls -S -l # ls -l -S | sort -k 5 -n # sort top 5 largest files in reverse order # ls -l -S -h # sort by size in human readable format..."