Change your handler_fileHandler section like so:
[handler_fileHandler]
class=FileHandler
level=DEBUG
formatter=fileFormatter
args=('%(logfilename)s',)
and then add a defaults argument to the fileConfig call
logging.fileConfig(loginipath, defaults={'logfilename': '/var/log/mylog.log'})