forked from Lainports/opnsense-ports
13 lines
295 B
Text
13 lines
295 B
Text
|
|
To make net2ftp available through your Apache web server,
|
|
add something similar to the following to httpd.conf:
|
|
|
|
Alias /net2ftp/ "%%WWWDIR%%/"
|
|
|
|
<Directory "%%WWWDIR%%/">
|
|
Options none
|
|
AllowOverride Limit
|
|
Order Deny,Allow
|
|
Deny from all
|
|
Allow from 127.0.0.1 .example.com
|
|
</Directory>
|