insert-coin/res/config.example.php

52 lines
1.7 KiB
PHP
Raw Permalink Normal View History

<?php
//
// This file contains some global configuration you might wanna do
//
2019-02-14 19:20:06 -06:00
$site_name = "insert-coin"; // what the site will be called
2020-06-07 08:19:41 -05:00
$root_name = "/srv/www/htdocs/insert-coin"; // the absolute path of this instance
$webroot = "/insert-coin/"; // path of instance relative to
2019-02-14 19:20:06 -06:00
// web-root (I.E., how it looks in
// the URL without the hostname)
// vars related to URL shortening
2019-02-14 19:20:06 -06:00
$url_aliasize_img = "res/img/mask-big.png";
$url_aliasize_alt = "A mask, floating in mid-air.";
2019-02-14 19:20:06 -06:00
$url_aliasize_win_img = "res/img/mask_win-big.png";
$url_aliasize_win_alt = "A whimsical mask sparkling.";
2019-02-14 19:20:06 -06:00
$url_aliasize_die_img = "res/img/mask_die-big.png";
$url_aliasize_die_alt = "A whimsical mask on fire.";
$url_aliasize_item = "mask"; // what the alias is affectionately called
$url_aliasize_dir = "u/"; // where the redirects go
2018-10-09 19:39:09 -05:00
$url_aliasize_visible_suffix = ".php"; // suffix visible in redirect links
$url_aliasize_suffix = ".php"; // actual suffix in redirect links
// (the distinction is important if you use
// URL rewriting for the /u/ folder or
//something
// vars related to file uploading
2019-02-14 19:20:06 -06:00
$file_beam_img = "res/img/coin-big.png";
$file_beam_alt = "A big & yellow coin lying before a coin-slot";
2019-02-14 19:20:06 -06:00
$file_beam_win_img = "res/img/coin_win-big.png";
$file_beam_win_alt = "A coin inserted into a coin slot.";
2019-02-14 19:20:06 -06:00
$file_beam_die_img = "res/img/coin_die-big.png";
$file_beam_die_alt = "A coin on fire.";
$file_beam_item = "coin"; // what the file is affectionately called
$file_beam_dir = "p/"; // where the files go
2018-10-07 03:25:06 -05:00
2018-10-09 19:39:09 -05:00
// for sanitization of images (stripping EXIF, etc) with an external program.
2019-01-27 01:51:11 -06:00
$image_sanitize_command = "mogrify";
$image_sanitize_args = "-strip";
2018-10-09 19:39:09 -05:00
?>