• Instance 발급

    GCP|딥러닝을 위한 VM 인스턴스 만들기 (feat. GPU)

  • Cloud DNS, Cloud Domain 발급

    GCP Console 에서 도메인 발급받기 (Cloud Domains)

  • HTTPS 설정

    • install snap in debian 10

      Installing snap on Debian | Snapcraft documentation

    • install certbot

      Certbot Instructions

  • aws nginx rewrite & proxy_pass

    ....
    #ec2
    
    location /ai {
    
    	rewrite ^/ai(/.*)$ $1 break;
    	proxy_pass <https://gomgom-gpu-server.com>;
    
    }
    
    ....
    #gcp gpu server
    
    location / {
    
    	proxy_pass <http://localhost:8888>;
    }