nginx_piratebox.conf 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # PirateBox app for YunoHost
  2. # Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  3. # Contribute at https://github.com/labriqueinternet/piratebox_ynh
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU Affero General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU Affero General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU Affero General Public License
  16. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. location <TPL:NGINX_LOCATION> {
  18. alias <TPL:NGINX_REALPATH>;
  19. if ($scheme = http) {
  20. rewrite ^ https://$server_name$request_uri? permanent;
  21. }
  22. client_max_body_size 10G;
  23. index index.php;
  24. try_files $uri $uri/ index.php;
  25. location ~ [^/]\.php(/|$) {
  26. fastcgi_split_path_info ^(.+?\.php)(/.*)$;
  27. fastcgi_pass unix:/var/run/php5-fpm-<TPL:PHP_NAME>.sock;
  28. fastcgi_index index.php;
  29. include fastcgi_params;
  30. fastcgi_read_timeout 600;
  31. fastcgi_param REMOTE_USER $remote_user;
  32. fastcgi_param PATH_INFO $fastcgi_path_info;
  33. fastcgi_param SCRIPT_FILENAME $request_filename;
  34. }
  35. include conf.d/yunohost_panel.conf.inc;
  36. }