Topic: Custom Folder

Hi
in the wiki at http://wiki.sysvm.com/CPanelNginx?title … anel_Nginx
you have this as the first line

cat >> /etc/cpnginx/custom/foo.com <<EOF

While searching Google I have seen others write it like this

cat > /etc/cpnginx/custom/foo.com <<EOF

Could this be why I always get an error trying to reload the vhost file and rebooting Nginx?

Re: Custom Folder

cat >     =>  This will clear the old  data  in the file
cat >>    => This will append the new data without removing the old data

Also those are simple examples .

Syslint Technologies | 24x7 Server Management | Outsourced Support | Software Development - (0091) 471-3273-211

Re: Custom Folder

cool Thanks