mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-02 00:32:15 +09:00
Merge pull request #232 from kijin/pr/cleanup-ip-allow-deny
관리자 허용 IP 및 사이트 잠금 예외 IP 처리 개선
This commit is contained in:
commit
987b78eb1a
33 changed files with 353 additions and 117 deletions
|
|
@ -77,9 +77,13 @@ $lang->about_nginx_rewrite = 'To use this feature at nginx, you need to configur
|
|||
$lang->time_zone = 'Time Zone';
|
||||
$lang->about_time_zone = 'If the server time is different from your time zone, you can use this option to display times in your time zone.';
|
||||
$lang->use_ssl = 'SSL';
|
||||
$lang->ssl_options['none'] = 'Never';
|
||||
$lang->ssl_options['none'] = 'None';
|
||||
$lang->ssl_options['optional'] = 'Optional';
|
||||
$lang->ssl_options['always'] = 'Always';
|
||||
$lang->use_sitelock = 'Site Lock';
|
||||
$lang->sitelock_options['none'] = 'None';
|
||||
$lang->sitelock_options['lock'] = 'Lock after Install';
|
||||
$lang->about_sitelock_after_install = 'If you lock your site, only your current IP range (%s) will be able to access your site.';
|
||||
$lang->about_database_file = 'Sqlite saves data in a file. Location of the database file should be unreachable by web<br/><span style="color:red">Data file should be inside the permission of 777.</span>';
|
||||
$lang->success_installed = 'Installation has been completed.';
|
||||
$lang->msg_db_checking = 'Checking...';
|
||||
|
|
|
|||
|
|
@ -78,6 +78,10 @@ $lang->use_ssl = 'SSLを使用';
|
|||
$lang->ssl_options['none'] = '使わない';
|
||||
$lang->ssl_options['optional'] = '部分的に使う';
|
||||
$lang->ssl_options['always'] = '常に使う';
|
||||
$lang->use_sitelock = 'サイトロック';
|
||||
$lang->sitelock_options['none'] = '使わない';
|
||||
$lang->sitelock_options['lock'] = 'ロック';
|
||||
$lang->about_sitelock_after_install = 'サイトをロックすると、インストールに使用したIP帯域(%s)以外接続できなくなるので注意してください。';
|
||||
$lang->about_database_file = 'Sqliteはファイルにデータを保存します。そのため、データベースファイルにはウェブからアクセスできない場所にしなければなりません。<br/><span style="color:red">データファイルのパーミッションは「777」に設定してください。</span>';
|
||||
$lang->success_installed = '正常にインストールされました。';
|
||||
$lang->msg_cannot_proc = 'インストールできる環境が整っていないため、リクエストを実行できませんでした。';
|
||||
|
|
|
|||
|
|
@ -80,6 +80,10 @@ $lang->use_ssl = 'SSL 사용';
|
|||
$lang->ssl_options['none'] = '사용 안함';
|
||||
$lang->ssl_options['optional'] = '선택적으로';
|
||||
$lang->ssl_options['always'] = '항상 사용';
|
||||
$lang->use_sitelock = '사이트 잠금';
|
||||
$lang->sitelock_options['none'] = '사용 안함';
|
||||
$lang->sitelock_options['lock'] = '잠금 상태로 설치';
|
||||
$lang->about_sitelock_after_install = '사이트를 잠그면 설치에 사용하신 IP 대역 (%s) 외에는 접속할 수 없게 되니 주의하십시오.';
|
||||
$lang->about_database_file = 'Sqlite는 파일에 데이터를 저장합니다. 데이터베이스 파일의 위치를 웹에서 접근할 수 없는 곳으로 해야 합니다.<br/><span style="color:red">데이터 파일은 777퍼미션 설정된 곳으로 지정해주세요.</span>';
|
||||
$lang->success_installed = '설치가 되었습니다.';
|
||||
$lang->msg_cannot_proc = '설치 환경이 갖춰지지 않아 요청을 실행할 수가 없습니다.';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue