'client_ip': get_client_ip(request),
})
+@ssl_required
+def system_information_ssl(request):
+ return render_to_response('core/system_information.html', {
+ 'server': os.uname()[1],
+ 'behind_cache': False,
+ 'cache_server': None,
+ 'client_ip': get_client_ip(request),
+ })
+
# Sync timestamp for automirror. Keep it around for 30 seconds
# Basically just a check that we can access the backend still...
@cache(seconds=30)
# Some basic information about the connection (for debugging purposes)
(r'^system_information/$', 'pgweb.core.views.system_information'),
+ (r'^system_information_ssl/$', 'pgweb.core.views.system_information_ssl'),
# Sync timestamp, for automirror
(r'^web_sync_timestamp$', 'pgweb.core.views.sync_timestamp'),