Skip to content

Show Website Configuration

Mitesh Shah edited this page Jul 30, 2014 · 8 revisions

EasyEngine (ee)

Show Website Configuration:

Nginx configuration for the site can be viewed with

ee site show example.com

Sample output:

^_^[[email protected]:~]# ee site show example.com 
Display NGINX configuration for example.com
# WPSINGLE FAST CGI NGINX CONFIGURATION

server {

	server_name example.com www.example.com;

	access_log   /var/log/nginx/example.com.access.log rt_cache;
	error_log    /var/log/nginx/example.com.error.log;

	root /var/www/example.com/htdocs;
	index index.php index.htm index.html;

	include common/wpfc.conf;
	include common/wpcommon.conf;
	include common/locations.conf;

}

above command will show the output of /etc/nginx/sites-available/example.com file.

Clone this wiki locally