/usr/local/lsws/wordpress/ - root 755
Folders inside are the same. This was the default by lsws and I ran into issues changing it.
I'm remembering my target folder inside is html which holds wordpress, etc.
lsws/wordpress is the path to the vhost.
So for me its more like:
Ownership: sudo chown -R nobody:nogroup /usr/local/lsws/wordpress/html/*
Folder permissions: sudo find /usr/local/lsws/wordpress/html/ -type d -exec chmod 755 {} \;
File permissions: sudo find /usr/local/lsws/wordpress/html/ -type f -exec chmod 644 {} \;