4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

はじめに

有り余るAndroid実機を一元管理できるようになるOpenSTFやってみました。

https://github.com/openstf/stf

インストールは説明するほど難しくないので全カット

グローバルで使えるようにする

--public-ip にグローバルIPを指定します。残念なことに、これをやるとローカルネットワークから使えなくなっちゃう・・・。

stf local --public-ip 216.58.221.14

※216.58.221.14 はサンプルです。各自準備したglobal ip をご利用ください。

basic認証をかける

基本の状態では認証がありません。ザルです。せめてものbasic認証をかけます。
--auth-options を使えばbasic認証がかけれます。

stf local --public-ip 216.58.221.14 --auth-options '["--use-basic-auth", "--basic-auth-username", "username", "--basic-auth-password", "password"]'
4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?