- When you install Odoo or Flectra on VPS or public server and proxies by Nginx, you will face that https://youdomain.com/web/database will become public on internet, and this is not good at all,
- We need some tips to protect /web/database before it get compromised by hacker
- Set very strong password for your Odoo, Flectra admin.
- or protect this url on Nginx by restricted ip access:
location ~* /web/database { proxy_pass http://127.0.0.1:7073; #Restricted access block allow 127.0.0.1; allow 8.8.8.4:1; deny all; error_page 403 https://gimitec.com; #Restricted access block }
allow 127.0.0.1; to your own IP,
allow 8.8.8.4; change to your own IP
3. Install Wireguard VPN Server on your own IP
https://github.com/angristan/wireguard-install
4. Install Wireguard client on your local computer, connect to VPN server and access to https://youdomain.com/web/databaseIt could help you keep /web/database out of eyes of internet spy