cleanup unused files
This commit is contained in:
parent
72c5cfdd12
commit
d5a21f0596
3 changed files with 0 additions and 92 deletions
|
@ -1,32 +0,0 @@
|
|||
<VirtualHost *:80>
|
||||
# The ServerName directive sets the request scheme, hostname and port that
|
||||
# the server uses to identify itself. This is used when creating
|
||||
# redirection URLs. In the context of virtual hosts, the ServerName
|
||||
# specifies what hostname must appear in the request's Host: header to
|
||||
# match this virtual host. For the default virtual host (this file) this
|
||||
# value is not decisive as it is used as a last resort host regardless.
|
||||
# However, you must set it for any further virtual host explicitly.
|
||||
#ServerName www.example.com
|
||||
|
||||
ServerAdmin webmaster@localhost
|
||||
DocumentRoot /var/www/public
|
||||
|
||||
|
||||
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
|
||||
# error, crit, alert, emerg.
|
||||
# It is also possible to configure the loglevel for particular
|
||||
# modules, e.g.
|
||||
#LogLevel info ssl:warn
|
||||
|
||||
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||||
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||||
|
||||
# For most configuration files from conf-available/, which are
|
||||
# enabled or disabled at a global level, it is possible to
|
||||
# include a line for only one particular virtual host. For example the
|
||||
# following line enables the CGI configuration for this host only
|
||||
# after it has been globally disabled with "a2disconf".
|
||||
#Include conf-available/serve-cgi-bin.conf
|
||||
</VirtualHost>
|
||||
|
||||
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
|
|
@ -1,56 +0,0 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<h1>Resize Image Uploading Demo</h1>
|
||||
@if (count($errors) > 0)
|
||||
<div class="alert alert-danger">
|
||||
<strong>Whoops!</strong> There were some problems with your input.<br><br>
|
||||
<ul>
|
||||
@foreach ($errors->all() as $error)
|
||||
<li>{{ $error }}</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
|
||||
@if ($message = Session::get('success'))
|
||||
<div class="alert alert-success alert-block">
|
||||
<button type="button" class="close" data-dismiss="alert">×</button>
|
||||
<strong>{{ $message }}</strong>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<strong>Original Image:</strong>
|
||||
<br/>
|
||||
<img src="/images/{{ Session::get('imageName') }}" />
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<strong>Thumbnail Image:</strong>
|
||||
<br/>
|
||||
<img src="/thumbnail/{{ Session::get('imageName') }}" />
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
|
||||
{!! Form::open(array('route' => 'resizeImagePost','enctype' => 'multipart/form-data')) !!}
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<br/>
|
||||
{!! Form::text('title', null,array('class' => 'form-control','placeholder'=>'Add Title')) !!}
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<br/>
|
||||
{!! Form::file('image', array('class' => 'image')) !!}
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<br/>
|
||||
<button type="submit" class="btn btn-success">Upload Image</button>
|
||||
</div>
|
||||
</div>
|
||||
{!! Form::close() !!}
|
||||
</div>
|
||||
@endsection
|
|
@ -1,4 +0,0 @@
|
|||
FROM php:7.4-apache
|
||||
|
||||
RUN a2enmod rewrite
|
||||
RUN docker-php-ext-install pdo_mysql
|
Loading…
Reference in a new issue