Advertisement
fragilbert

Nginx Omeka-S

Nov 22nd, 2023 (edited)
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. server {
  2. server_name omeka.domain.tld;
  3. root /var/www/omeka;
  4.  
  5. location = /favicon.ico {
  6. log_not_found off;
  7. access_log off;
  8. }
  9.  
  10. location = /robots.txt {
  11. allow all;
  12. log_not_found off;
  13. access_log off;
  14. }
  15.  
  16. location ~ \..*/.*\.php$ {
  17. return 403;
  18. }
  19.  
  20. location / {
  21. try_files $uri /index.php?$args;
  22. }
  23.  
  24. location /admin {
  25. try_files $uri /index.php?$args;
  26. }
  27.  
  28. location ~ \.php$ {
  29. fastcgi_split_path_info ^(.+\.php)(/.+)$;
  30. #NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
  31. include fastcgi_params;
  32. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  33. fastcgi_intercept_errors on;
  34. fastcgi_pass 127.0.0.1:9000;
  35. }
  36.  
  37. location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
  38. expires max;
  39. log_not_found off;
  40. }
  41. }
Tags: omeka-s
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement