Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

26 wiersze
629B

  1. server {
  2. listen 80;
  3. server_name example.tld;
  4. return 301 https://$server_name$request_uri;
  5. }
  6. server {
  7. listen 443;
  8. ssl on;
  9. ssl_session_timeout 5m;
  10. ssl_certificate /etc/letsencrypt/live/exmaple.tld/fullchain.pem;
  11. ssl_certificate_key /etc/letsencrypt/live/example.tld/privkey.pem;
  12. ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
  13. ssl_ciphers "HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES";
  14. ssl_prefer_server_ciphers on;
  15. server_name example.tld;
  16. location / {
  17. proxy_pass http://localhost:4000;
  18. }
  19. include snippets/well-known.conf;
  20. }