text4u
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 492B

1234567891011121314151617181920212223
  1. server {
  2. listen 80;
  3. index index.php index.html;
  4. server_name localhost;
  5. root /var/www/public;
  6. location / {
  7. try_files $uri $uri/ /index.php?$query_string;
  8. }
  9. location ~ \.php$ {
  10. include fastcgi_params;
  11. fastcgi_pass app:9000;
  12. fastcgi_index index.php;
  13. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  14. fastcgi_param PATH_INFO $fastcgi_path_info;
  15. }
  16. location ~ /\.ht {
  17. deny all;
  18. }
  19. }