From a security point of view, is it safe to create a symbolic link to a socket file? The following bits of context refer to the deployment of a web application on a shared hosting service.
$ ls -al ~/runtime/supervisor
srwx------ 1 myuser myuser 0 Oct 6 20:02 supervisord.sock
$ pwd
~/runtime/deployment_1
$ ln -s ../supervisor/supervisor.sock
$ ls -al
lrwxrwxrwx 1 myuser myuser 47 Oct 6 21:20 supervisord.sock -> ../runtime/supervisor/supervisord.sock=
Should I set any special permissions on the symlink or something else?