wget 을 통 해 정적 페이지 복사 실현

2180 단어
수요
저 는 tango with django 의 1.7 버 전 을 보고 국내 에 자주 방문 하지 못 했 고 참고 하여 프로 그래 밍 을 해 야 하기 때문에 먼저 웹 페이지 를 복사 해서 준비 한 후에 사용 합 니 다.
어떻게 합 니까?
tangowithdjango 라 는 책 은 정적 페이지 이기 때문에 wget 명령 을 통 해 다른 사람의 웹 페이지 전 체 를 복사 할 수 있 습 니 다.그리고 저 자신 에 게 nginx 서버 가 뛰 고 있 기 때문에 해당 하 는 인터넷 주 소 를 제 호스트 에 다운로드 하면 됩 니 다.
순서
  • (VPS / 이 컴퓨터 의) 터미널 에 입력: [sudo] wget - r -- no - parenthttp://www.tangowithdjango.com/book17/ http://www.tangowithdjango.com/book17/ 1.7 버 전의 URI - r 는 재 귀 를 대표 하기 때문에 이 URI 의 모든 자원 은 wget 에서 내 려 와 야 합 니 다.평소에 이 명령 을 조심해 야 합 니 다. -no - parent 대 표 는 부모 디 렉 터 리 로 거 슬러 올 라 가지 마 세 요
  • VPS 가 있 으 면 폴 더 의 owner 를 ww - data (nginx) 로 바 꾸 고 ww (apache) 는 인터넷 주 소 를 바 꾸 는 것 을 기억 합 니 다.mac 에서 사용 하면 index 를 열 면 탐색 할 수 있 습 니 다
  • log
    ~ ~ wget 명령 을 실행 하면 VPS 가 자동 으로 재 귀적 으로 가 져 옵 니 다.http://www.tangowithdjango.com/book17/이 폴 더 의 파일 입 니 다.다운로드 에 성공 한 파일 의 로 그 를 볼 수 있 습 니 다.
    --2016-05-14 03:31:32-- http://www.tangowithdjango.com/book17/
    Resolving www.tangowithdjango.com (www.tangowithdjango.com)... 50.19.109.98
    Connecting to www.tangowithdjango.com (www.tangowithdjango.com)|50.19.109.98|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 44861 (44K) [text/html]
    Saving to: 'www.tangowithdjango.com/book17/index.html'

    100%[======================================>] 44,861 --.-K/s in 0.1s
    2016-05-14 03:31:32 (335 KB/s) - 'www.tangowithdjango.com/book17/index.html' saved [44861/44861] …… --2016-05-14 03:31:32-- http://www.tangowithdjango.com/book17/_static/pygments.css Reusing existing connection to www.tangowithdjango.com:80. HTTP request sent, awaiting response... 200 OK Length: 3932 (3.8K) [text/css] Saving to: 'www.tangowithdjango.com/book17/_static/pygments.css'
    100%[======================================>] 3,932 --.-K/s in 0s
    2016-05-14 03:31:32 (661 MB/s) - 'www.tangowithdjango.com/book17/_static/pygments.css' saved [3932/3932] ……
    Reference
    http://linuxtools-rst.readthedocs.io/zh_CN/latest/tool/wget.html https://www.quora.com/Where-can-I-download-Tango-with-Django http://www.tangowithdjango.com/book17/

    좋은 웹페이지 즐겨찾기