OpenSource CLI-App to install and handle stuff related to Web-Server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
308 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. @if ($redirect_www)
  2. server {
  3. listen 80;
  4. listen [::]:80;
  5. server_name {{ $domain }} www.{{ $domain }};
  6. return 301 http://{{ $domain }}$request_uri;
  7. }
  8. @endif
  9. server {
  10. listen 80;
  11. listen [::]:80;
  12. @include('partials.default', ['domain' => $domain])
  13. @section('server')
  14. @show
  15. }