403
回編集
(→設定) |
(→その他) |
||
= その他 =
== Google Search Console ==
ドメインで登録する場合、TXTレコードをDNSサーバに設定する。
== グローバルIP取得 ==
=== Webサーバ ===
* /var/www/html/ip/index.php
<nowiki>
<?php
header("Content-Type: text/plain;charset=UTF-8");
echo $_SERVER['REMOTE_ADDR'];
?>
</nowiki>
=== クライアント ===
<nowiki>
$ curl https://SERVER/ip/
</nowiki>
<nowiki>
$ crontab -e
0 6 * * * curl -s https://SERVER/ip/ | mail -s "IP" MAIL
</nowiki>
|