The full request URI including hostname and scheme. If your app lives behind a reverse proxy or load balancer and you get confusing results, make sure that the ``X-Forwarded-Host`` header is set correctly.
(self)
| 1808 | |
| 1809 | @property |
| 1810 | def url(self): |
| 1811 | """ The full request URI including hostname and scheme. If your app |
| 1812 | lives behind a reverse proxy or load balancer and you get confusing |
| 1813 | results, make sure that the ``X-Forwarded-Host`` header is set |
| 1814 | correctly. """ |
| 1815 | return self.urlparts.geturl() |
| 1816 | |
| 1817 | @DictProperty('environ', 'bottle.request.urlparts', read_only=True) |
| 1818 | def urlparts(self): |