2 커밋 2467534186 ... 3f6bc3261a

작성자 SHA1 메시지 날짜
  Miti Mazmudar 3f6bc3261a Clarified how to access the server URL. 4 년 전
  Miti Mazmudar 66b527a632 Fixed ports in run-mitigator. 4 년 전
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      README.md
  2. 1 1
      run-mitigator

+ 1 - 1
README.md

@@ -24,5 +24,5 @@ We use Docker scripts to reproduce our setup for our paper. Two of our scripts s
 
 ## Testing
 
-We require a client to install [our Firefox browser extension](https://git-crysp.uwaterloo.ca/miti/browser-extension) to test our server-side setup. The last script opens up the port on which the Mitigator server is running within the docker container (port 8001). Obtain the ip address of the docker container by running the `find_docker_ip` script within the container. The server form page can be retrieved on the server machine by accessing `docker_url:8001/index.php`. The browser extension will automatically encrypt all form fields to the decryptor enclave when the submit button is pressed.  
+We require a client to install [our Firefox browser extension](https://git-crysp.uwaterloo.ca/miti/browser-extension) to test our server-side setup. The last script opens up the port on which the Mitigator server is running within the docker container (port 8001). The server form page can be retrieved on the server machine by accessing `http://server_address:8001/index.php`. The browser extension will automatically encrypt all form fields to the decryptor enclave when the submit button is pressed.  
 

+ 1 - 1
run-mitigator

@@ -1,2 +1,2 @@
 #!/bin/bash
-docker run --device /dev/isgx --device /dev/gsgx --name mitigator --rm -p 8044:8044 -dt mitigator bash -c "start-aesmd && exec bash"
+docker run --device /dev/isgx --device /dev/gsgx --name mitigator --rm -p 8001:8001 -dt mitigator bash -c "start-aesmd && exec bash"