IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

26 рядки
467B

  1. worker_processes 1;
  2. events {
  3. worker_connections 1024;
  4. }
  5. http {
  6. include mime.types;
  7. default_type application/octet-stream;
  8. {% for i in range(cookiecutter.ips|length) %}
  9. server {
  10. listen 80;
  11. server_name {{ ' '.join(cookiecutter.domains[i]) }};
  12. location /.well-known/ {
  13. root /certbot/webroot;
  14. }
  15. location / {
  16. proxy_pass http://{{ cookiecutter.ips[i] }}/;
  17. }
  18. }
  19. {% endfor %}
  20. }