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.
 
 
 

16 lines
637 B

server {
listen 80;
listen [::]:80;
server_name <?php echo e($domain); ?> <?php if($redirect_www): ?> www.<?php echo e($domain); ?> <?php endif; ?>;
return 301 http://<?php echo e($domain); ?>$request_uri;
}
server {
listen 80;
listen [::]:80;
<?php echo $__env->make('partials.default', ['domain' => $domain], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<?php $__env->startSection('server'); ?>
<?php echo $__env->yieldSection(); ?>
}<?php /**PATH /home/test/Workspace/tentakelfabrik/mcp/resources/templates/nginx/layouts/no-ssl.blade.php ENDPATH**/ ?>