I am new to server management and earlier I used shared hosting and thought to go for VPS and get more for my websites. VPS specs:
RAM: 12GB
CPU: 4 Core Intel E5
SSD: 300GB
Server: Apache
OS: Ubuntu 16.04
PHP: 7.0 FCGI
Stack: Virtualmin
Script: Wordpress
Number of website: 1(Going to host 5 more websites if server can withstand with it)
Cache plugin: W3 Total Cache
I installed memcached on my VPS and want to tune it to serve static file at faster rate. Since I don't know what can be done so I have included my memcached file:
# Run memcached as a daemon
-d
# Log memcached's output to /var/log/memcached
logfile /var/log/memcached.log
# Start with a cap of 4096 megs of memory
-m 4096
# Default connection port is 11211
-p 11211
# Run the daemon as memcache
-u memcache
# Specify which IP address to listen on.
-l 127.0.0.1
Reason for tuning: Better performance and when running 5 WordPress sites. I purchase popup traffic which is 1000-3000 per 1 minute. So, I want to server each page from memcached and I want to know if there's some tuning needed for this
Please let me know what can be done in order to tune up my website.