소스 검색

fix prod url

amenpunk 1 년 전
부모
커밋
0c0b174f13
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/Utils/HTTP.js

+ 2 - 2
src/Utils/HTTP.js

@@ -3,9 +3,9 @@ import axios from 'axios';
3 3
 export class Service {
4 4
 
5 5
   constructor(path) {
6
-    this.base_url = 'http://204.48.25.93:8081'
6
+    // this.base_url = 'http://204.48.25.93:8081'
7
+    this.base_url = 'https://psicoadmin.ditca.org:8443'
7 8
     this.url = this.base_url + path
8
-    // this.base_url = 'http://psicoadmin.ditca.org:8081'
9 9
     // this.api =  'http://204.48.25.93:8081/user?user=patrik&password=12345'
10 10
     // this.api =  'http://psicoadmin.ditca.org:8081/user?user=patrik&password=12345'
11 11
   }