Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
webssh
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
郑天保
webssh
Commits
e55e7e68
Commit
e55e7e68
authored
Apr 11, 2018
by
Sheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rewrote get_real_client_addr
parent
ce3c70c4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
handler.py
handler.py
+10
-6
No files found.
handler.py
View file @
e55e7e68
...
@@ -24,14 +24,18 @@ class MixinHandler(object):
...
@@ -24,14 +24,18 @@ class MixinHandler(object):
def
get_real_client_addr
(
self
):
def
get_real_client_addr
(
self
):
ip
=
self
.
request
.
headers
.
get
(
'X-Real-Ip'
)
ip
=
self
.
request
.
headers
.
get
(
'X-Real-Ip'
)
port
=
self
.
request
.
headers
.
get
(
'X-Real-Port'
)
port
=
self
.
request
.
headers
.
get
(
'X-Real-Port'
)
addr
=
None
if
ip
and
port
:
if
ip
is
None
and
port
is
None
:
addr
=
(
ip
,
int
(
port
))
return
elif
ip
or
port
:
logging
.
warn
(
'Wrong nginx configuration.'
)
return
addr
try
:
port
=
int
(
port
)
except
(
TypeError
,
ValueError
):
pass
else
:
if
ip
:
# does not validate ip and port here
return
(
ip
,
port
)
logging
.
warn
(
'Bad nginx configuration.'
)
class
IndexHandler
(
MixinHandler
,
tornado
.
web
.
RequestHandler
):
class
IndexHandler
(
MixinHandler
,
tornado
.
web
.
RequestHandler
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment