Compare commits
6 Commits
98c39c5fa6
...
608dd188dd
| Author | SHA1 | Date | |
|---|---|---|---|
| 608dd188dd | |||
| f8916e1919 | |||
| 094ddf9b07 | |||
|
|
ab68082f18 | ||
|
|
1fbbaa92c7 | ||
|
|
73cd0c1c1f |
@@ -13,6 +13,8 @@ const SERVERS=[ //servers and ports we are running on
|
||||
'dhosting4xxoydyaivckq7tsmtgi4wfs3flpeyitekkmqwu4v4r46syd.onion'=>['sftp'=>22, 'pop3'=>'110', 'imap'=>'143', 'smtp'=>'25'],
|
||||
'hosting.danwin1210.me'=>['sftp'=>22, 'pop3'=>'995', 'imap'=>'993', 'smtp'=>'465']
|
||||
];
|
||||
const COPYRIGHT='';
|
||||
const DISCLAIMER='';
|
||||
const EMAIL_TO=''; //Send email notifications about new registrations to this address
|
||||
const INDEX_MD5S=[ //MD5 sums of index.hosting.html files that should be considered as unchanged for deletion
|
||||
'd41d8cd98f00b204e9800998ecf8427e', //empty file
|
||||
|
||||
@@ -3,7 +3,7 @@ require('../common.php');
|
||||
header('Content-Type: text/html; charset=UTF-8');
|
||||
print_header(_('Info'));
|
||||
?>
|
||||
<h1><?php echo _('Hosting - Info'); ?></h1>
|
||||
<h1><?php echo _(SITE_NAME); ?> - Info</h1>
|
||||
<?php main_menu('index.php'); ?>
|
||||
<p><?php echo _('Here you can get yourself a free web hosting account on my server.'); ?></p>
|
||||
<h2><?php echo _('What you get:'); ?></h2>
|
||||
@@ -27,6 +27,19 @@ print_header(_('Info'));
|
||||
<li><?php printf(_('There is a missing feature, or you need a special configuration? Just <a href="%s">contact me</a> and I\'ll see what I can do.'), CONTACT_URL); ?></li>
|
||||
<li><?php echo _('More to come…'); ?></li>
|
||||
</ul>
|
||||
<?php if (defined('COPYRIGHT') && COPYRIGHT !== ''): ?>
|
||||
<h2><?php echo _('Copyright'); ?></h2>
|
||||
<ul>
|
||||
<li><?php echo _(COPYRIGHT); ?></li>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (defined('DISCLAIMER') && DISCLAIMER !== ''): ?>
|
||||
<h2><?php echo _('Disclaimer'); ?></h2>
|
||||
<ul>
|
||||
<li><?php echo _(DISCLAIMER); ?></li>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
<h2><?php echo _('Rules'); ?></h2>
|
||||
<ul>
|
||||
<li><?php echo _('No child pornography!'); ?></li>
|
||||
|
||||
Reference in New Issue
Block a user