NullTerminator
Programmer
apache running on server A, I want to alias a shared folder on server b using a unc in the directory tag. Is there any way I can pass credentias to access the share, or am I stuck with the credentials under which apache is running. Both boxes win2k.
Alias /webdocs/ "//b/share$/docs/webdocs"
<Directory "//b/share$/docs/webdocs">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
it works if the apache service account has read permissions, but I would like more explicit control.
Alias /webdocs/ "//b/share$/docs/webdocs"
<Directory "//b/share$/docs/webdocs">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
it works if the apache service account has read permissions, but I would like more explicit control.