FIXED: The problem was in fact in permalinks. To make them work, I had to edit /etc/apache2/apache2.conf
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
To
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
Then I ran sudo service apache2 restart and sudo a2enmod rewrite
My permalinks started working after that which means WPGlobus is finally working.