@Nuxwin thank you so much in advance. Really appetiate it
Found a small typo error during digging. Currently it is:
- for ( [ $nginxTmpDir, $rootUName, $rootUName, 0755 ], [ $self->{'config'}->{'HTTPD_CONF_DIR'}, $rootUName, $rootGName, 0755 ], [ $self->{'config'}->{'HTTPD_LOG_DIR'}, $rootUName, $rootGName, 0755 ], .....
but I guess it should be ($rootGName instead of second $rootUName):
- for (
- [ $nginxTmpDir, $rootUName, $rootGName, 0755 ],
- ....
Also there seems a "," too much at the end of the for after [ $self->{'config'}->{'HTTPD_SITES_ENABLED_DIR'}, $rootUName, $rootGName, 0755 ],.