nginx.conf 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # Wifi Hotspot app for YunoHost
  2. # Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  3. # Contribute at https://github.com/labriqueinternet/hotspot_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. #sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
  18. location __PATH__/ {
  19. # Path to source
  20. alias __FINALPATH__/ ;
  21. # Force usage of https
  22. if ($scheme = http) {
  23. rewrite ^ https://$server_name$request_uri? permanent;
  24. }
  25. index index.php;
  26. # Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
  27. client_max_body_size 10G;
  28. try_files $uri $uri/ index.php;
  29. location ~ [^/]\.php(/|$) {
  30. fastcgi_split_path_info ^(.+?\.php)(/.*)$;
  31. fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
  32. fastcgi_index index.php;
  33. include fastcgi_params;
  34. fastcgi_read_timeout 600;
  35. fastcgi_param REMOTE_USER $remote_user;
  36. fastcgi_param PATH_INFO $fastcgi_path_info;
  37. fastcgi_param SCRIPT_FILENAME $request_filename;
  38. }
  39. # Include SSOWAT user panel.
  40. include conf.d/yunohost_panel.conf.inc;
  41. }