Saltstack Official Nginx Formula
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

2 роки тому
12345678910111213141516171819202122232425262728293031323334
  1. .. _readme_apt_keyrings:
  2. apt repositories' keyrings
  3. ==========================
  4. Debian family of OSes deprecated the use of `apt-key` to manage repositories' keys
  5. in favor of using `keyring files` which contain a binary OpenPGP format of the key
  6. (also known as "GPG key public ring")
  7. As nginx and passenger don't provide such key files, we created them following the
  8. official recomendations in their sites and install the resulting files.
  9. Nginx
  10. -----
  11. See https://nginx.org/en/linux_packages.html#Debian for details
  12. .. code-block:: bash
  13. $ curl -s https://nginx.org/keys/nginx_signing.key | \
  14. gpg --dearmor --output nginx-archive-keyring.gpg
  15. Phusion-passenger
  16. -----------------
  17. See https://www.phusionpassenger.com/docs/tutorials/deploy_to_production/installations/oss/ownserver/ruby/nginx/
  18. for more details.
  19. .. code-block:: bash
  20. $ gpg --keyserver keyserver.ubuntu.com \
  21. --output - \
  22. --recv-keys 561F9B9CAC40B2F7 | \
  23. gpg --export --output phusionpassenger-archive-keyring.gpg