0
0

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 3 years have passed since last update.

Athlon1600/php-proxy-app

Last updated at Posted at 2020-11-25

PHPで動作するプロキシは Glype や PHPProxy といったのがありましたが、更新が滞っていたので代わりを発見しました。

インストール

wget "https://www.php-proxy.com/download/php-proxy.zip"

unzip php-proxy.zip
cd php-proxy
php -S 0.0.0.0:8000

aa.png

設定

  • config.php
- $config['app_key'] = '';
+ $config['app_key'] = 'xxxxxx';

GETも受け取るようにする

  • http://localhost:8000/?url=http://google.co.jpのようにリンクを書けるように。
index.php
- if (isset($_POST['url'])) {
-     $url = $_POST['url'];
+ if (isset($_REQUEST['url'])) {
+     $url = $_REQUEST['url'];
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?