ImgHost/config/configuration.php

35 lines
696 B
PHP

<?php
/************ CONFIGURATION FILE ***********/
/** This file is used for general server **/
/** configuration. These values may be **/
/** changed as necessary to suit your **/
/** requirements. **/
// The name that will appear on the pages of the server
$serverName = "ImgHost";
$serverHostname = "imghost.local";
// Directory where the images will be stored
$targetDir = "uploads/";
// Filename of the style sheet (found in config foler)
$stylesheet = "style.css";
// Supported file types
$supportedFileTypes = array (
"image/jpeg",
"image/png",
"image/gif",
"image/webp",
"image/avif",
"image/apng",
"image/svg"
);
?>