Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

nginx.conf 232B

12345678910
  1. server {
  2. listen 80;
  3. server_name "https://trampa-api.dilig.net";
  4. location / {
  5. root /usr/share/nginx/html;
  6. index index.html index.htm;
  7. try_files $uri /index.html;
  8. }
  9. }