diff options
-rw-r--r-- | R_on_Cloud/default_config.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/R_on_Cloud/default_config.py b/R_on_Cloud/default_config.py index 6ad9982..15cedcb 100644 --- a/R_on_Cloud/default_config.py +++ b/R_on_Cloud/default_config.py @@ -11,8 +11,9 @@ BIN = '/usr/bin/R' # Path of R bin file API_URL = "http://127.0.0.1:8001/rscript" API_URL_PLOT = "http://127.0.0.1:8001/file" +API_URL_UPLOAD = "http://127.0.0.1:8001/upload" -ALLOWED_HOST_IP = ['Host IP'] +ALLOWED_HOST_IP = ['127.0.0.1'] TORNADO_IP = '0.0.0.0' TORNADO_PORT = '8000' # default port |