UPDATE! Since Hide My WP Ghost wp-admin can be hidden for Nginx servers. It will require a config update after you install the plugins.
Please read more details about how to configure Hide My WP Ghost for Nginx servers
(more…)Please follow this tutorial step by step to set up the Hide My WP Ghost for Nginx server:
If your server is a Linux server, the main path to the nginx.conf file is /etc/nginx/nginx.conf (or /etc/nginx/conf/nginx.conf if you’re using Arch Linux). If the server is a Windows server your nginx.conf file will be located at C:/nginx/conf/nginx.conf)
If your nginx doesn’t have sites-enabled option activated (check for sites-enabled subdirectory in the same directory with nginx.conf file), you will find the server configuration in nginx.conf file like in the below example:
server { server_name [your domain name]; root [path to the website root]; index index.php; location / { try_files $uri $uri/ /index.php?$args; } }(more…)
Setting Hide My Wp Ghost on a Nginx server it’s pretty easy.
Nginx stores its configuration files in the “/etc/nginx” directory.
Inside of this directory, you will find a few directories and various modular configuration files:
cd /etc/nginx ls -F(more…)