Fork me on GitHub

Organizations

@github @rss
1 results for serverless
  • Difficulty level: Not too easy and not too hard
    images/featured-image.png
    Static web pages load faster and provide less attack surface. I’ll show you how to convert a CMS page via Gitlab Pipline. First, I create a build stage that generates a static copy via wget. uild: stage: build when: always only: - master script: - mkdir static - rm -r .git - wget -k -K -E -r -l 10 -p -N -F --restrict-file-names=windows -nH http://wordpress-adresse/ -P static >> /dev/null 2>&1 || true - find .
    cms git gitlab pipeline serverless Created Sun, 16 Feb 2020 00:00:00 +0000