Restrict Site Access by IP Address

by
Odoo
v 8.0 v 9.0 v 10.0 Third Party 822
Download for v 10.0 Deploy on Odoo.sh
Availability
Odoo Online
Odoo.sh
On Premise
Technical Name allow_access_ip
Websitehttp://www.retech.com.vn
Versions 8.0 10.0 9.0
You bought this module and need support? Click here!
Availability
Odoo Online
Odoo.sh
On Premise
Technical Name allow_access_ip
Websitehttp://www.retech.com.vn
Versions 8.0 10.0 9.0

Restrict Site Access by IP Address

Setting for each user

Canot login with other IP address

show error message on login

Please log in to comment on this module

  • The author can leave a single reply to each comment.
  • This section is meant to ask simple questions or leave a rating. Every report of a problem experienced while using the module should be addressed to the author directly (refer to the following point).
  • If you want to start a discussion with the author, please use the developer contact information. They can usually be found in the description.
Please choose a rating from 1 to 5 for this module.
Please Forwarding Visitor's Real-IP in Nginx Proxy ( or Apache2) First !!
by
le dinh thanh
on 9/26/18, 5:47 AM Author

1. Add config ` proxy_mode = True` to configuration file 2. Nginx ( or Apache2) config like this: server { listen 80; server_name domain.com; client_max_body_size 1000m; location / { proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Real-IP $remote_addr; proxy_pass http://127.0.0.1:8069; proxy_read_timeout 3000000; } location /longpolling { proxy_read_timeout 60m; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Real-IP $remote_addr; proxy_pass http://127.0.0.1:8069; } }


There are no comments yet!