Added documentation for App.base

As discussed in https://github.com/cakephp/docs/issues/4895
This commit is contained in:
Livia Scapin 2017-04-19 17:12:24 +02:00 committed by GitHub
parent eb937e3c79
commit ce9f33314d

View file

@ -116,10 +116,17 @@
* for any URL generation inside the application, set the following
* configuration variable to the http(s) address to your domain. This
* will override the automatic detection of full base URL and can be
* useful when generating links from the CLI (e.g. sending emails)
* useful when generating links from the CLI (e.g. sending emails).
* If the application runs in a subfolder, you should also set App.base.
*/
//Configure::write('App.fullBaseUrl', 'http://example.com');
/**
* The base directory the app resides in. Should be used if the
* application runs in a subfolder and App.fullBaseUrl is set.
*/
//Configure::write('App.base', '/my_app');
/**
* Web path to the public images directory under webroot.
* If not set defaults to 'img/'