Offloaded mysql without remote access
Take a look at this article: https://easyengine.io/docs/remote-mysql/
View ArticleHow stable is NGINX?
I can understand your reservations but I have been using EE on my own production servers (all 5 of them) without a problem for close to a year now and I cannot complain. The opposite in fact. I love...
View ArticleEe.conf duplicate line item in default config?
Just installed a fresh copy and noticed the following for [copy] and [sync]. Is this intentional to have enable_plugin = true twice? Also the commented descriptions appear the same too. [update] ###...
View ArticleOffloaded mysql without remote access
Thanks @tyrro but notice the thread title that I do not have remote access to be able to give ee the credentials of the remote mysql server to create databases on demand. I must create the databases...
View ArticleOffloaded mysql without remote access
Why don't you just modify wp-config.php after site creation? What's the matter on keeping an unused database in your server?
View ArticleCreate site with www?
Right now there are two types of www redirection on your site: by nginx and by WordPress. EasyEngine's nginx default setting covers both www and non-www. If you type this on address bar, both will...
View ArticleCannot protect wp-login.php (IP/htpasswd) in subdirectory
When you manually install WP, did you insert include common/wpcommon.conf ? What was nginx error said?
View ArticleForce HTTPS not working with lets encrypt
Hello, I am also facing same issue, I did add those line in nginx config use ee site edit but no luck Can you please help me in this I want redirect non www to www including https Thanks
View ArticleOffloaded mysql without remote access
Sorry my bad regarding remote access, somehow slipped away from me.
View ArticleForce HTTPS not working with lets encrypt
You configuration in /etc/nginx/sites-available should look like this: server { server_name mydomain.com www.mydomain.com; access_log /var/log/nginx/mydomain.com.access.log rt_cache; error_log...
View ArticleForce HTTPS not working with lets encrypt
Hello, I think I have all necessary stuff, please take a look server { server_name domain.in www.domain.in; access_log /var/log/nginx/domain.in.access.log rt_cache; error_log...
View ArticleHow stable is NGINX?
Sounds like myself (the paranoid part) ... May I ask what you are most satisfied about ? And did you find any disadvantages whatsoever ?
View ArticleForce HTTPS not working with lets encrypt
You need two server blocks: One listening on 443 with the following lines in it: listen 443 ssl http2; ssl on; ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem; ssl_certificate_key...
View ArticleHow stable is NGINX?
The configuration just works for the most part. I especially like the fact that I don't have to mess with file-permissions and most of the default stuff in wp-config when using WordPress works great....
View ArticleForce HTTPS not working with lets encrypt
hardeep: include /var/www/domain.in/conf/nginx/*.conf; This file contains everything you mentioned above like listen 443 ssl http2;undefined> ssl_certificate /var/www/22222/cert/ssl.crt;...
View ArticleHow stable is NGINX?
Thanks for your reply .. it's very helpful. Server hardening is indeed another topic all together ... however I was thinking about how EE updates NGINX ... Is it so that it just compiles the source...
View ArticleNGINX helper plugin 'adds support' for caching?
Hi, I was just reading the NGINX helper plugin page and I see that it's also developed by rtCamp ... It also looks like NGINX helper needs a few modules to work, such as : nginx-srcache-module...
View ArticleForce HTTPS not working with lets encrypt
Mmmm. I am not sure what's going on here but I think you should change the redirect string from: return 301 $scheme://www.domain.in$request_uri; To: return 301 https://$server_name$request_uri;...
View ArticleForce HTTPS not working with lets encrypt
Garikai_Dzoma: What happens when you type in https://www.domain.in at the moment? If you are being redirected to: https://domain.in then the problem lies elsewhere. In WordPress this might mean this...
View Article