並び順

ブックマーク数

期間指定

  • から
  • まで

41 - 80 件 / 133件

新着順 人気順

" Reverse Proxy"の検索結果41 - 80 件 / 133件

  • GitHub - mercari/grpc-http-proxy: A reverse proxy server which translate JSON HTTP requests to gRPC calls based on protoreflect

    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

      GitHub - mercari/grpc-http-proxy: A reverse proxy server which translate JSON HTTP requests to gRPC calls based on protoreflect
    • Charles Web Debugging Proxy • HTTP Monitor / HTTP Proxy / HTTPS & SSL Proxy / Reverse Proxy

      Web Debugging Proxy Application for Windows, Mac OS and Linux Charles is an HTTP proxy / HTTP monitor / Reverse Proxy that enables a developer to view all of the HTTP and SSL / HTTPS traffic between their machine and the Internet. This includes requests, responses and the HTTP headers (which contain the cookies and caching information). Read More Recent Developments For discussion on the latest ch

      • Subversion behind an Apache Reverse Proxy

        A reverse proxy looks to the outside like a normal web server, but redirects requests to other (possibly invisible from outside) servers. There are several reasons why one might want to put subversion behind a reverse proxy. The subversion server might be located in the intranet of an organisation, but has to be accessable from the outside or the administrator wants to separate several web-applica

        • Running a Reverse Proxy with Apache:

          In 2003, Nick Kew released a new module that complements Apache's mod_proxy and is essential for reverse-proxying. Since then he gets regular questions and requests for help on proxying with Apache. In this article he attempts to give a comprehensive overview of the proxying and mod_proxy_html This article was originally published at ApacheWeek in January 2004, and moved to ApacheTutor with minor

          • Nginx reverse proxy + URL rewrite

            Nginx is running on port 80, and I'm using it to reverse proxy URLs with path /foo to port 3200 this way: location /foo { proxy_pass http://localhost:3200; proxy_redirect off; proxy_set_header Host $host; } This works fine, but I have an application on port 3200, for which I don't want the initial /foo to be sent to. That is - when I access http://localhost/foo/bar, I want only /bar to be the path

              Nginx reverse proxy + URL rewrite
            • reverse proxyをHTTP/HTTPS両対応のサイトに導入するときの落とし穴 · DQNEO日記

              発生にいたるメカニズム サーバ構成 フロントのリバースクプロキシにNginx、バックエンドのアプリケーションサーバにApacheを使用していました。 (ただ、これは何のソフトウェアを使っているかとかは関係なく、どの組み合わせでも起こりうると思います。) フロントでNginxが80番と443番の両方のポートをListenして、バックエンドでApacheが8080番をListenします。 わりとよくある構成ではないかと思います。 ブラウザ -> (http) -> Nginx(80) -> (http) -> Apache(8080) ブラウザ -> (https) -> Nginx(443) -> (http) -> Apache(8080) Nginxは、クライアントから静的コンテンツを要求された場合は即レスポンスし、動的コンテンツ(.phpなど)を要求された場合は背後のApacheにリク

              • GitHub - microsoft/reverse-proxy: A toolkit for developing high-performance HTTP reverse proxy applications.

                YARP (which stands for "Yet Another Reverse Proxy") is a project to create a reverse proxy server. We found a bunch of internal teams at Microsoft who were either building a reverse proxy for their service or had been asking about APIs and tech for building one, so we decided to get them all together to work on a common solution, this project. YARP is a reverse proxy toolkit for building fast prox

                  GitHub - microsoft/reverse-proxy: A toolkit for developing high-performance HTTP reverse proxy applications.
                • GitHub - ryotarai/simproxy: Simple HTTP balancer (reverse proxy)

                  You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                    GitHub - ryotarai/simproxy: Simple HTTP balancer (reverse proxy)
                  • GitHub - mtsmfm/yaichi: Yaichi is a reverse proxy for developers using Docker on development environment.

                    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                      GitHub - mtsmfm/yaichi: Yaichi is a reverse proxy for developers using Docker on development environment.
                    • Reverse Proxy

                      🔗 Reverse Proxy 🔗 What is a Reverse Proxy? 🔗 What is the Reverse Proxy Mode? 🔗 What is the httpd-accelerator mode? (in Squid v2) 🔗 What is the Accelerator (accel) mode? (in Squid v3-v6) The terms Accelerator Proxy, httpd-accelerator, and Reverse Proxy were all used in the past to describe what the HTTP Standard now officially defines as a Gateway Proxy. To the FAQ Index Navigation: Site Searc

                      • Full Disclosure: Apache HTTP Server: mod_proxy reverse proxy exposure (CVE-2011-3368)

                        Apache HTTP Server: mod_proxy reverse proxy exposure (CVE-2011-3368) From: Joe Orton <jorton () apache org> Date: Wed, 5 Oct 2011 14:58:02 +0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Apache HTTP Server Security Advisory ==================================== Title: mod_proxy reverse proxy exposure CVE: CVE-2011-3368 Date: 20111005 Product: Apache HTTP Server Versions: httpd 1.3 all versions,

                          Full Disclosure: Apache HTTP Server: mod_proxy reverse proxy exposure (CVE-2011-3368)
                        • Speed up Rails with Nginx’s Reverse Proxy Cache

                          What is a reverse proxy cache? A reverse proxy cache is a web server that sits between the public internet and your Rails app. In the basic scenario (i.e. without the “cache” part), this extra web server is completely transparent: user requests pass through the web server, to Rails, and then responses go back out to the user. But, when Rails marks a response as “public and cacheable”, this means t

                          • GitHub - alash3al/lightify: a reverse proxy that boosts the web app performance!

                            You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                              GitHub - alash3al/lightify: a reverse proxy that boosts the web app performance!
                            • squid 3.1をreverse proxyとして使ってる場合にoriginサーバー側のbasic認証を使う方法 - hideden.hatenablog.com

                              [squid]---[apache:1]---[apache:2] という構成の[apache:2]で特定のHTTP methodの場合だけかけてあるBASIC認証がsquidを経由すると全然通れなくなって、[apache:1]でmod_rewriteの[P]使ってるからダメなのかと疑ってみたり、tcpdumpで調べて「なんでsquidの後ろでAuthorizationヘッダが消えるんだよ!!」とムカついてたりしたんだが、単純にsquidの設定が足りなかった。 cache_peer 10.0.0.x parent 8080 0 no-query login=PASS originserver "login=PASS" が必要らしい。普通にドキュメントに書いてあった。ドキュメントは隅々までちゃんと読むべき。 header_accessやrequest_header_accessはこの場合は全

                                squid 3.1をreverse proxyとして使ってる場合にoriginサーバー側のbasic認証を使う方法 - hideden.hatenablog.com
                              • NGINX as a Reverse Proxy for Docker Swarm Clusters

                                NGINX as a Reverse Proxy for Docker Swarm ClustersWritten by: Lorenzo Fontana Spawning services across multiple Docker engines is a very cool thing, but those services need to connect each other and be found by public-facing nodes in order to be routed to users. A way to achieve that is to use NGINX as a reverse proxy by defining one or more public-facing nodes. These nodes are going to have NGINX

                                  NGINX as a Reverse Proxy for Docker Swarm Clusters
                                • GitHub - acidlemon/mirage: docker front end & reverse proxy for development

                                  You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                    GitHub - acidlemon/mirage: docker front end & reverse proxy for development
                                  • nginx: Setup SSL Reverse Proxy (Load Balanced SSL Proxy)

                                    nixCraft → Howto → CentOS → nginx: Setup SSL Reverse Proxy (Load Balanced SSL Proxy) A reverse proxy is a proxy server that is installed in a server network. Typically, reverse proxies are used in front of Web servers such as Apache, IIS, and Lighttpd. How do I setup nginx web server as SSL reverse proxy? When you’ve multiple backend web servers, encryption / SSL acceleration can be done by a reve

                                    • Using Nginx As Reverse-Proxy Server On High-Loaded Sites :: Oleksiy Kovyrin

                                      Two weeks ago we have started new version of one of our primary web projects and have started very massive advertisement campaign to promote this web site. As the result of that advertisements, our outgoing traffic has been increased to 200-250Mbit/s from only one server! In this article I will describe, how to build stable and efficient web site with two-layer architecture (with frontend + backen

                                      • 非常に安易なnginx reverse proxyの作り方 | iret.media

                                        こんにちは、cloudpack の 齋藤(saitara) です。 今回はCentOSを前提としていますが、多くのUN*X系システムにおいて同様の方法で実現できるはずです。 環境の準備 tmpfsを準備する /etc/fstab に以下のエントリーを追加し、OSで使用できるうちの20%のメモリを tmpfs として確保します。ディスクへの読み書きを減らし、速度向上・環境によるストレージ利用制限を回避を実現します。 tmpfs /var/cache/nginx tmpfs defaults,noatime,mode=1777,size=20% 0 0 nginxの準備 導入方法の確認 nginx公式ページにて導入方法を確認します。 Installing nginx 今回はCentOSですので、更にLinux系のページヘ進みます。 nginx: Linux packages リポジトリの追加

                                          非常に安易なnginx reverse proxyの作り方 | iret.media
                                        • GitHub - alash3al/xerver: a tiny static and fastcgi reverse proxy written in golang

                                          You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                            GitHub - alash3al/xerver: a tiny static and fastcgi reverse proxy written in golang
                                          • Reverse Proxy経由でlighttpdへアクセスした際、リモートIPを取得する方法 - 元RX-7乗りの適当な日々

                                            リバースプロキシ導入の際に、バックエンドサーバーで取得するリモートIPアドレスが全てリバースプロキシのIPアドレスになってしまうという問題。 これについては、 http://www.namazu.org/~takesako/diary/?date=20031205 で紹介されている通り、バックエンドのWebサーバが"Apache"の場合は「mod_rpaf」を使えば良いし、このやり方についてはインターネット上で結構紹介されている。 では、バックエンドのWebサーバが"lighttpd"の場合は、どうすればよいのかというのが今日のお話。 さて、この問題の対策については、 http://www.mylab.jp/diary/20031203.html#p01 で紹介されている通り、 X-Forwarded-For というアクセス元の IP をログに記録すればよい なのだが、そうはいってもApa

                                            • Reverse Proxyの後ろにCatalystアプリを置いてみた - kopug memo

                                              前回PODだけ貼り付け、検証すると言ったので検証した。 http://d.hatena.ne.jp/kopug/20061201 構成 ( Rooter ) | [Apache2.0 mod_proxy] | [Apache2.0 mod_perl Catalyst ]Frontendのhttpd.conf <VirtualHost *:80> ServerAdmin webmaster@example.com DocumentRoot /var/www/foo/html ServerName www.example.com ErrorLog logs/error_log CustomLog logs/access_log common RewriteEngine On RewriteRule ^/css|img|js/ - [L] RewriteRule ^/(.*)$ http://b

                                                Reverse Proxyの後ろにCatalystアプリを置いてみた - kopug memo
                                              • How to set up Nginx as a caching reverse proxy?

                                                I heard recently that Nginx has added caching to its reverse proxy feature. I looked around but couldn't find much info about it. I want to set up Nginx as a caching reverse proxy in front of Apache/Django: to have Nginx proxy requests for some (but not all) dynamic pages to Apache, then cache the generated pages and serve subsequent requests for those pages from cache. Ideally I'd want to invalid

                                                  How to set up Nginx as a caching reverse proxy?
                                                • GitHub - pottava/aws-s3-proxy: Reverse proxy for AWS S3 with basic authentication.

                                                  You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                    GitHub - pottava/aws-s3-proxy: Reverse proxy for AWS S3 with basic authentication.
                                                  • GitHub - zalando/skipper: An HTTP router and reverse proxy for service composition, including use cases like Kubernetes Ingress

                                                    An overview of deployments and data-clients shows some use cases to run skipper. Skipper identifies routes based on the requests' properties, such as path, method, host and headers allows modification of the requests and responses with filters that are independently configured for each route simultaneously streams incoming requests and backend responses optionally acts as a final endpoint (shunt),

                                                      GitHub - zalando/skipper: An HTTP router and reverse proxy for service composition, including use cases like Kubernetes Ingress
                                                    • nginx: Avoid CORS and reverse proxy settings - latest log

                                                      ブラウザから XHRでAPIサーバにアクセスして JSON が欲しいんじゃあ、 でもサーバに(Access-Control-Allow-Origin *)は置けないんじゃぁ、 CORS 嫌いじゃぁぁぁぁ という状況。実によくあると思います。 nginx でその辺やったことなかったので、やってみたら1時間ハマったのでメモ。 ハマったらメモを残す。大事。

                                                        nginx: Avoid CORS and reverse proxy settings - latest log
                                                      • GitHub - Rob--W/cors-anywhere: CORS Anywhere is a NodeJS reverse proxy which adds CORS headers to the proxied request.

                                                        You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                          GitHub - Rob--W/cors-anywhere: CORS Anywhere is a NodeJS reverse proxy which adds CORS headers to the proxied request.
                                                        • GitHub - drk1wi/Modlishka: Modlishka. Reverse Proxy.

                                                          Modlishka is a powerful and flexible HTTP reverse proxy. It implements an entirely new and interesting approach of handling browser-based HTTP traffic flow, which allows it to transparently proxy multi-domain destination traffic, both TLS and non-TLS, over a single domain, without a requirement of installing any additional certificate on the client. What exactly does this mean? In short, it simply

                                                            GitHub - drk1wi/Modlishka: Modlishka. Reverse Proxy.
                                                          • Deserialized » Blog Archive » Reverse Proxy Performance – Varnish vs. Squid (Part 1)

                                                            Typical web applications require dozens of SQL queries to generate a single page.  When your application is serving over 1,000,000 pages per day, you quickly realize that the performance bottleneck is your database.  The typical answer to slow database queries is “just use memcached!”  Memcached and other data caches can only take you so far.  This is where reverse proxies come in.  There are a ha

                                                            • Node.jsによるReverse Proxy実装をGoでリプレイスした話 - Sansan Tech Blog

                                                              Node.jsによるReverse Proxy実装をGoでリプレイスした話 技術本部 Bill One Engineering Unit(以下、Bill One EU)の川原です。23卒としてSansan株式会社に入社し、インボイス管理サービス「Bill One」の開発をしています。今回はNode.jsによるReverse Proxy実装をGoでリプレイスした話をします。 リプレイスしたReverse Proxy Bill Oneの機能の1つに、メールで送られた請求書をBill Oneが代理で受領する機能があります。 Bill Oneでは、SendGridという外部サービスを介してメールを受信しており、Cloud Run上のマイクロサービスへリクエストを送っています。 SendGridとCloud Run上のマイクロサービスの間には、SendGridからのWebhookイベントをプロキシす

                                                                Node.jsによるReverse Proxy実装をGoでリプレイスした話 - Sansan Tech Blog
                                                              • ワンライナーで https の Reverse Proxy を実行する

                                                                ローカルで使うための https な Reverse Proxy が欲しいKubernetes で実行している Web サービスにて対して kubectl port-forward でアクセスすることが良くありますが、そのサービスが Cookie を使っており、secure フラグが必須となっている場合があります。大変面倒です。便利な Reverse Proxy サーバーがないものかと探しました。nodejs で書かれた local-ssl-proxy は見つかりましたが、私は nodejs が好きじゃないのでこれをローカルには入れたくありません。Docker で動かすにしても mac なので docker から host の localhost にアクセスするにはどうすれば良いのでしょう?調べるのも面倒です… 追記 Docker on Mac, Docker on Windows の場合

                                                                  ワンライナーで https の Reverse Proxy を実行する
                                                                • WordPressをHTTP/HTTPS両対応のreverse proxy経由で動かすときに気を付けること · DQNEO日記

                                                                  何が問題なのか? こちらの記事に書いたとおりです。 reverse proxyをHTTP/HTTPS両対応のサイトに導入するときの落とし穴 対処法 wp-config.phpの冒頭で、このように書いておきます。 define('FORCE_SSL_LOGIN', true); define('FORCE_SSL_ADMIN', true); $_SERVER['HTTPS'] = 'on'; こうすれば、WordPressを騙して「お前はSSLで動いてるんだよ」と思い込ませることができます。 これにより、WordPressが吐き出す絶対URLが <script src="https://..." ></script> となるので安全です。 参考 WordPress をフロント Nginx のリバースプロキシ下で運用する場合に 管理画面を SSL に強制する設定

                                                                  • gitlabをreverse proxy下で動かしたりsubdirectory設定したり - Argmax.jp

                                                                    Basics Profile Software memo Software pyssp colorcorrect 閻魔 pykwic azarashi changefinder 2020-10-16 Profile 2017-09-24 RecentDeleted 2017-03-29 CircleCiでgoをやる memo 2017-03-24 FrontPage Menuedit MenuBar SideMenu memo 老化によりgitosisダルくなってきているのでweb uiが付いてるgitサーバーが欲しかった。 apacheでzabbix動かしてるサーバーにgitlab同居させるときにやったこと。 パッケージからインストール † https://about.gitlab.com/downloads/ $ wget https://downloads-packages.s3.a

                                                                    • NGINX to reverse proxy websockets AND enable SSL (wss://)?

                                                                      I'm so lost and new to building NGINX on my own but I want to be able to enable secure websockets without having an additional layer. I don't want to enable SSL on the websocket server itself but instead I want to use NGINX to add an SSL layer to the whole thing. Every web page out there says I can't do it, but I know I can! Thanks to whoever (myself) can show me how!

                                                                        NGINX to reverse proxy websockets AND enable SSL (wss://)?
                                                                      • DeleGate HTTPS Reverse Proxy - NO LIMIT Is. Wiki支部

                                                                        概要 DeleGateでクライアント認証付きSSLリバースプロキシサーバ、いわゆるSSL-VPNの一種を構築してみます。 要件 以下のような要件を考えてみます。 社内ネットワークに設置されているWebベースのグループウェアサーバにインターネットから接続したい。 インターネット上の通信は暗号化したい。 接続できるユーザ(PC)を制限したい。 シナリオ 要件1,2はSSLリバースプロキシを用いることで解決できます。想定するネットワークの構成は以下のような感じになります。クライアントPCからSSLリバースプロキシにHTTPSでアクセスすると、リバースプロキシはSSLを復号してHTTPでグループウェアサーバに中継します。 要件3は少々やっかいです。グループウェアにもユーザ認証機能はありますが、正当なユーザ以外にはグループウェアの認証画面にすら到達できないようにしたいということなのでリバースプロキシ

                                                                        • GitHub - rapiz1/rathole: A lightweight and high-performance reverse proxy for NAT traversal, written in Rust. An alternative to frp and ngrok.

                                                                          You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                                            GitHub - rapiz1/rathole: A lightweight and high-performance reverse proxy for NAT traversal, written in Rust. An alternative to frp and ngrok.
                                                                          • How To Configure Nginx with SSL as a Reverse Proxy for Jenkins | DigitalOcean

                                                                            Introduction By default, Jenkins comes with its own built in web server, which listens on port 8080. This is convenient if you run a private Jenkins instance, or if you just need to get something up quickly and don’t care about security. Once you have real production data going to your host, though, it’s a good idea to use a more secure web server such as Nginx handling the traffic. This post will

                                                                              How To Configure Nginx with SSL as a Reverse Proxy for Jenkins | DigitalOcean
                                                                            • GitHub - metajack/tape: A simple, reverse proxy capable Web server for local JavaScript application development.

                                                                              You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                                                GitHub - metajack/tape: A simple, reverse proxy capable Web server for local JavaScript application development.
                                                                              • Reversee - Reverse Proxy Web Debugger

                                                                                Every developer needs to see his http traffic. Some tools are great but they either require too much to learn or to fire them up. Some tools will show you just too much. When you need to see some traffic of just one app at a time, and you need it now, Reversee is the way to go.

                                                                                  Reversee - Reverse Proxy Web Debugger
                                                                                • Change the reverse proxy upstream of Nginx without Lua — mkouhei's blog

                                                                                  Change the reverse proxy upstream of Nginx without Lua 前回の記事(Change the reverse proxy upstream of Nginx by time zone) を見て、 matsuu さん が下記のような設定をGistに掲載されていたので試してみました。 結果、問題なくできたので前回の設定は次のようにシンプルになりました。 map $time_iso8601 $upstream { default "app-b.example.org"; "~T(0|1[01])" "app-a.example.org"; } server { server_name app.example.org; rewrite ^ $scheme://$upstream$request_uri permanent; } upstream a