How to get WordPress Permalinks working at Subdomains in Directadmin with NGINX only
Also on my server when I uses NGinx only, I was able to get Subdomains working fine with permalinks by adding:
Geschreven door Vincent Verloop op . Gepost in Webhosting. Geen reacties op How to get WordPress Permalinks working at Subdomains in Directadmin with NGINX only
Also on my server when I uses NGinx only, I was able to get Subdomains working fine with permalinks by adding:
Geschreven door Vincent Verloop op . Gepost in Uncategorized. Geen reacties op How to Install Nginx with Fast_CGI + Varnish Cache on AlmaLinux OS
Varnish Cache is an HTTP accelerator and reverse proxy specially designed for heavily loaded dynamic web sites as well as APIs. It acts as a middleman between your client and server. Varnish works by handling requests before they make it to your backend. If Varnish doesn’t have a request cached, it will forward the request to your backend and then cache its output.
Geschreven door Vincent Verloop op . Gepost in Webhosting. Geen reacties op How to Edit Opcache Settings for DirectAdmin
You may find that you need to increase the opcache.memory_consumption or some other setting for Opcache. To do so, you will need to create a custom configuration file with the settings you’d like to build Opcache with that DirectAdmin’s CustomBuild will recognize. Then, copy the original opcache.ini file over to this custom/ directory.
Geschreven door Vincent Verloop op . Gepost in Raspberry Pi. Geen reacties op Clean Raspberry Pi Boot
To present a clean and undisturbed splash screen, we are disabling the display of these items (in order of appearance)
Disable graphical outputs on boot
sudo nano /boot/cmdline.txt
A long line will open. At the end of this line add:
logo.nologo vt.global_cursor_default=0
• Replace console=tty1 to console=tty3 to redirect boot messages to the third console.
• Add loglevel=3 to disable non-critical kernel log messages.
Disable the rainbow screen the Pi boots with
sudo nano /boot/config.txt
Go to the very end and add as the last line:
disable_splash=1
Remove login prompt
Remove the login prompt by running:
sudo systemctl disable getty@tty3
Boot with a video or image as a splashscreen
We use omxplayer for that. So first we need to install it by:
sudo apt-get update sudo apt-get install omxplayer
Next we tell the pi in the rc.local to play our video on boot:
sudo nano /etc/rc.local
In rc.local add before the end where it says exit 0 these two lines:
dmesg –console-off
omxplayer /home/pi/bootvideo_36sec.mov &
Geschreven door Vincent Verloop op . Gepost in Webhosting. Geen reacties op Install Java on CentOS 8
Java is one of the most popular programming languages used to build different types of applications and systems.
There are two different implementations of Java, OpenJDK and Oracle Java, with almost no differences between them, except that Oracle Java has a few additional commercial features. Oracle Java License permits only non-commercial use of the software, such as personal use and development use. OpenJDK is an open-source implementation of the Java Platform.
Geschreven door Vincent Verloop op . Gepost in Webhosting. Geen reacties op PHP Redis Session Handler – WordPress Redis
Redis is an open source key-value cache and storage system, also referred to as a data structure server for its advanced support for several data types, such as hashes, lists, sets, and bitmaps, amongst others. It also supports clustering, which makes it often used for highly-available and scalable environments.
In this tutorial, we’ll see how to install and configure an external Redis server to be used as a session handler for a PHP application running on CentOS 8.
Geschreven door Vincent Verloop op . Gepost in Security. Geen reacties op How to install Kali on Rasperry Pi 3
Head to Offensive Security and download the latest Kali Linux image for the Raspberry Pi. As of this writing, it is “RaspberryPi 2 / 3” on version 2.1.2.
You can use a tool like ApplePiBaker for Mac to load your Kali image onto your SD card. If you use Windows, you can use Win32 Disk Imager to put your image on the card.
When finished, your SD card is ready to go! Insert the SD card into your Pi, connect it to HDMI, and attach your USB keyboard. Plug in the power source to boot into Kali Linux for the first time. To get to the desktop, your default login is “root” with “toor” being the password.
Geschreven door Vincent Verloop op . Gepost in Webhosting. Geen reacties op How to install WP-CLI on Directadmin Centos 8
WP-CLI wordt niet voorgeïnstalleerd op je hostingpakket. Daar zijn eigenlijk twee simpele redenen voor. Niet iedereen met een hostingpakket wil per se WordPress gebruiken. Wel WordPress installeren betekent daarnaast niet dat iemand ook meteen WP-CLI wil. Gelukkig is zelf WP-CLI installeren zo gebeurd en daarna ook makkelijk bij te werken wanneer nodig.
Geschreven door Vincent Verloop op . Gepost in Webhosting. Geen reacties op How to delete Directadmin Mail Queue with SSH
The Mail Queue will show you, of course, all the email messages that are in the queue. If a user on your server has issues with the emails then you should check the DirectAdmin Mail Queue.
Geschreven door Vincent Verloop op . Gepost in Webhosting. Geen reacties op How to install mod_brotli on Directadmin CentOS 8
Just like gzip, Brotli is also a compression algorithm. It is developed by Google and serves best for text compression. The reason being, it uses a dictionary of common keywords and phrases on both client and server side and thus gives a better compression ratio. The advantage for Brotli over gzip is that it makes use of a dictionary and thus it only needs to send keys instead of full keywords. It is supported by all major browsers. Fewer bytes transferred not only leads to faster page load but also helps in reducing costs of Content Delivery Network (CDN).
Geschreven door Vincent Verloop op . Gepost in Webhosting. Geen reacties op How to Install Elasticsearch on CentOS 8
Ready for faster more powerful WordPress search?
Geschreven door Vincent Verloop op . Gepost in Webhosting. Geen reacties op How to install Memcached on CentOS 8
Free & open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.
Memcached is an in-memory key-value store for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering.
Memcached is simple yet powerful. Its simple design promotes quick deployment, ease of development, and solves many problems facing large data caches. Its API is available for most popular languages.