I'm migrating from a windows based apache server to a linux based apache server.
One problem I'm having is with my aliases, I have many aliases in windows which are setup via UNC paths...
But I don't think this will work in linux, do I need to mount each share in my fstab, and then use the mount directory, or do I need to configure things somehow to see UNC paths? The mounting seems the easiest, but I'm not sure it's correct practice, so would appreciate any feedback.
One problem I'm having is with my aliases, I have many aliases in windows which are setup via UNC paths...
Code:
Alias /process "//machinename/sharename/folder"
<Directory "//machinename/sharename/folder">
Options....
And so on
</Directory>
But I don't think this will work in linux, do I need to mount each share in my fstab, and then use the mount directory, or do I need to configure things somehow to see UNC paths? The mounting seems the easiest, but I'm not sure it's correct practice, so would appreciate any feedback.