mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-23 20:58:42 +00:00
Compare commits
2 Commits
b8b0f4fd38
...
29371d550e
Author | SHA1 | Date | |
---|---|---|---|
29371d550e | |||
a932b51629 |
@ -54,7 +54,7 @@ class HTML {
|
|||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
$port = ((UOJConfig::$data['web']['main']['protocol'] === "http" && UOJConfig::$data['web']['main']['port'] == 80) || (UOJConfig::$data['web']['main']['protocol'] === "https" && UOJConfig::$data['web']['main']['port'] == 443)) ? '' : (':'.UOJConfig::$data['web']['main']['port']);
|
$port = ((UOJConfig::$data['web']['main']['protocol'] === "http" && UOJConfig::$data['web']['main']['port'] == 80) || (UOJConfig::$data['web']['main']['protocol'] === "https" && UOJConfig::$data['web']['main']['port'] == 443)) ? '' : (':'.UOJConfig::$data['web']['main']['port']);
|
||||||
$url = UOJConfig::$data['web']['main']['protocol'].'://'.UOJConfig::$data['web']['main']['host'].$port.'/blog/'.blog_name_encode($username);
|
$url = '/blog/'.blog_name_encode($username);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
$url .= $uri;
|
$url .= $uri;
|
||||||
@ -70,7 +70,7 @@ class HTML {
|
|||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
$port = ((UOJConfig::$data['web']['main']['protocol'] === "http" && UOJConfig::$data['web']['main']['port'] == 80) || (UOJConfig::$data['web']['main']['protocol'] === "https" && UOJConfig::$data['web']['main']['port'] == 443)) ? '' : (':'.UOJConfig::$data['web']['main']['port']);
|
$port = ((UOJConfig::$data['web']['main']['protocol'] === "http" && UOJConfig::$data['web']['main']['port'] == 80) || (UOJConfig::$data['web']['main']['protocol'] === "https" && UOJConfig::$data['web']['main']['port'] == 443)) ? '' : (':'.UOJConfig::$data['web']['main']['port']);
|
||||||
$url = UOJConfig::$data['web']['main']['protocol'].'://'.UOJConfig::$data['web']['main']['host'].$port.'/blogs';
|
$url = '/blogs';
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return HTML::escape(rtrim($url, '/'));
|
return HTML::escape(rtrim($url, '/'));
|
||||||
@ -97,7 +97,7 @@ class HTML {
|
|||||||
// }
|
// }
|
||||||
if ($param) {
|
if ($param) {
|
||||||
$url .= $path.'?'.HTML::query_string_encode($param);
|
$url .= $path.'?'.HTML::query_string_encode($param);
|
||||||
} else {
|
} else if ($url != '/') {
|
||||||
$url .= rtrim($path, '/');
|
$url .= rtrim($path, '/');
|
||||||
}
|
}
|
||||||
return HTML::escape($url);
|
return HTML::escape($url);
|
||||||
|
@ -87,7 +87,7 @@ dockerInitProgress() {
|
|||||||
chown -R www-data:www-data /var/uoj_data
|
chown -R www-data:www-data /var/uoj_data
|
||||||
#Replace password placeholders
|
#Replace password placeholders
|
||||||
sed -i -e "s/salt0/$_salt0_/g" -e "s/salt1/$_salt1_/g" -e "s/salt2/$_salt2_/g" -e "s/salt3/$_salt3_/g" -e "s/_judger_socket_password_/$_judger_socket_password_/g" /var/www/uoj/app/.config.php
|
sed -i -e "s/salt0/$_salt0_/g" -e "s/salt1/$_salt1_/g" -e "s/salt2/$_salt2_/g" -e "s/salt3/$_salt3_/g" -e "s/_judger_socket_password_/$_judger_socket_password_/g" /var/www/uoj/app/.config.php
|
||||||
sed -i -e "s/'protocol' => 'http'/'protocol' => '$_uoj_protocol_',/g" /var/www/uoj/app/.config.php
|
sed -i -e "s/'protocol' => 'http'/'protocol' => '$_uoj_protocol_'/g" /var/www/uoj/app/.config.php
|
||||||
#Start services
|
#Start services
|
||||||
service ntp restart
|
service ntp restart
|
||||||
service apache2 restart
|
service apache2 restart
|
||||||
|
Loading…
Reference in New Issue
Block a user