The PhysicalDirectory directive specifies the name of a local directory to use when files are transferred from JADE to the Web server by using the
The characteristics of the PhysicalDirectory directive are listed in the following table.
Characteristic | Value |
---|---|
Action | Specifies the directory to use as a physical directory |
Syntax | PhysicalDirectory local-directory |
Context | Location |
Handler | jadehttp-handler |
Module | mod_jadehttp |
Example | PhysicalDirectory /var/tmp/appname/ |
Apache directives require separators to be defined using a forward slash (/) character.
The following is an example of the use of the PhysicalDirectory directive.
<Directory /var/spool/www/jade/images/> order allow,deny allow from all </Directory> Alias /jade/images/ /var/spool/www/jade/images/ <location /jade/webform> SetHandler jadehttp_handler PhysicalDirectory /var/spool/www/jade/images/ </location>
In this example, the physical directory on disk /var/spool/www/jade/images/ needs to be the same in the three places. The actual value can change on a site‑specific basis.