mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
8 lines
227 B
Python
8 lines
227 B
Python
def get_client_ip(request):
|
|
x_forwarded_for = request.META.get("HTTP_X_FORWARDED_FOR")
|
|
if x_forwarded_for:
|
|
ip = x_forwarded_for.split(",")[0]
|
|
else:
|
|
ip = request.META.get("REMOTE_ADDR")
|
|
return ip
|