We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41319bc commit a9c7a12Copy full SHA for a9c7a12
1 file changed
README
@@ -82,6 +82,23 @@ Due to the AJAX same-origin policy, the front-end and back-end must be
82
deployed on the same server (unless you do some fancy proxy magic).
83
84
85
+======
86
+Misc. notes
87
+
88
89
+If your server limits the size of responses received from HTTP requests,
90
+then you might need to add the following .htaccess file in your
91
+top-level (front-end) directory, in order to allow Online Python Tutor
92
+to receive traces from the back-end:
93
94
+<IfModule mod_security.c>
95
96
+# Set a ~10MB limit for response headers (way bigger than default 512K limit)
97
+SecResponseBodyLimit 10000000
98
99
+</IfModule>
100
101
102
======
103
Original founding vision (from January 2010):
104
0 commit comments