Skip to content

Commit cafd94a

Browse files
author
Sanket Dharwadkar
committed
fix: readme note and review changes
1 parent 6968e0f commit cafd94a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

RStudio/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ Since RStudio currently requires a custom domain name, please configure the same
8686
* The EC2 instance backing this workspace must be in the Ready state.
8787
* Click on the connections button and hit Connect.
8888
* If you're provisioning an RStudio instance with studies selected, the selected studies will show up as mounted directories in the RStudio. These study directories will contain files uploaded to the corresponding study. Any files uploaded to the study from the Service Workbench will automatically appear in the mounted study directories after a short delay.
89+
* Note: Connection-critical SSM parameters are created once RStudio instances are fully initialized. Allow up to a minute after an RStudio instance becomes available on Service Workbench for connections to work.
8990

9091
**Notes**:
9192
* If you're provisioning an RStudio instance with studies selected, these studies will only get mounted on your instance once you click on the RStudio workspace's "Terminal" tab.

RStudio/machine-images/config/infra/files/rstudio/nginx.conf

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,9 @@ http {
2525
access_log /var/log/nginx/access.log;
2626
error_log /var/log/nginx/error.log;
2727

28-
map $request_method $temp_body {
28+
map $request_method $proxy_body {
2929
POST $request_body;
3030
GET $query_string;
31-
default $request_method;
3231
}
3332
map $http_upgrade $connection_upgrade {
3433
default upgrade;
@@ -85,7 +84,7 @@ http {
8584
proxy_set_header Cookie "csrf-token=$request_id";
8685
proxy_method POST;
8786
proxy_set_header Content-Type application/x-www-form-urlencoded;
88-
proxy_set_body $temp_body&csrf-token=$request_id;
87+
proxy_set_body $proxy_body&csrf-token=$request_id;
8988
}
9089

9190
location /auth-sign-in {

0 commit comments

Comments
 (0)