Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eiel/flaun
launch browser after ssh local forward
https://github.com/eiel/flaun
Last synced: about 1 month ago
JSON representation
launch browser after ssh local forward
- Host: GitHub
- URL: https://github.com/eiel/flaun
- Owner: eiel
- License: mit
- Created: 2013-08-09T08:05:59.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T08:21:43.000Z (about 1 year ago)
- Last Synced: 2024-03-15T12:26:09.979Z (10 months ago)
- Language: Ruby
- Size: 32.2 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Flaun
[![Build Status](https://travis-ci.org/eiel/flaun.png?branch=master)](https://travis-ci.org/eiel/flaun)
[![Coverage Status](https://coveralls.io/repos/eiel/flaun/badge.png?branch=master)](https://coveralls.io/r/eiel/flaun)
[![Code Climate](https://codeclimate.com/github/eiel/flaun.png)](https://codeclimate.com/github/eiel/flaun)TODO 英語で書きなおす。
リモートのサーバからブラウザでアクセスすることを再現できます。
もっと詳しく言うと ssh でポートフォワードしてブラウザでひらきます。
アクセス制御したいが、固定IPがない時に便利かもしれません。## Installation
Add this line to your application's Gemfile:
gem 'flaun'
And then execute:
$ bundle
Or install it yourself as:
$ gem install flaun
## Usage
もし eiel.info というマシンから http://localhost/foo にアクセスしたいとする。
この情報を `sample` とすると、以下のコマンドでブラウザでひらけるようにします。```bash
$ flaun sample
```これをできるようにするには `~/.flaun` を作成します。
```ruby
port 8010target :sample do
host 'eiel.info'
path 'foo'
end
```### 具体的には
以下のコマンドを実行した状態で、
```
ssh eiel.info -L 8010:eiel.info:80
````http://localhost:8010/foo` へブラウザで表示します。
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request