Code Monkey home page Code Monkey logo

Comments (28)

madeye avatar madeye commented on July 21, 2024 2

In addition, if we implement a websocket SIP003 plugin, we can run shadowsocks behind Apache/Nginx, even a CDN. Both of these two approaches would work.

from simple-obfs.

zeptoTantalum avatar zeptoTantalum commented on July 21, 2024 1

I tried shadowsocks over WebSocket tunnel with CloudFlare Free CDN, using nginx as reverse proxy on a web server. It works, and largely improves download speed.

from simple-obfs.

madeye avatar madeye commented on July 21, 2024

Yes, it's possible. Actually we can reuse any of the following tunnels, fork them as a SIP003 plugin:

from simple-obfs.

madeye avatar madeye commented on July 21, 2024

BTW, simple-obfs is unable to work with apache/nginx, which is just a header obfuscation tool.

from simple-obfs.

Mygod avatar Mygod commented on July 21, 2024

What I meant is something like this but as a plug in: https://github.com/shadowsocks/shadowsocks-dotcloud

So that the server looks like a normal website and can tunnel shadowsocks traffic at the same time.

from simple-obfs.

Mygod avatar Mygod commented on July 21, 2024

Hmm actually we can add a configuration to server options:

failover=(IP or hostname)[:(port)]

Default port is 80 or 443 correspondingly. If an invalid request is received, obfs-server just simply forward raw request to failover server. Now if I want to make my website work, I can make it listen on (for example) 8080 and let obfs-server listen on 80 and set failover=localhost:8080.

Maybe we can also add an "obfs-path" option to both local and server?

from simple-obfs.

madeye avatar madeye commented on July 21, 2024

OK, so it works like HAProxy. I think it's doable and we can implement in obfs-server easily. It will forward any request not to obfs-host or invalid request to Apache/Nginx.

obfs-path may not work as SNI doesn't have information about the URL path.

from simple-obfs.

Mygod avatar Mygod commented on July 21, 2024

@madeye Then only for HTTP?

from simple-obfs.

madeye avatar madeye commented on July 21, 2024

@Mygod Not elegant, but acceptable. What about a pull request? 😄

from simple-obfs.

Mygod avatar Mygod commented on July 21, 2024

Let's take the forwarding approach since the web server can be written in a wide variety of languages...

from simple-obfs.

Mygod avatar Mygod commented on July 21, 2024

Actually that's just to prevent conflict (what if there's also a web socket server running at /)... I'm okay without it. 🙃

from simple-obfs.

madeye avatar madeye commented on July 21, 2024

Please try ec9b0c1.

from simple-obfs.

Mygod avatar Mygod commented on July 21, 2024

Tested with HTTP. Works perfectly. Thanks!

from simple-obfs.

Mygod avatar Mygod commented on July 21, 2024

Wait. What about the obfs-host checking at server side?

from simple-obfs.

Mygod avatar Mygod commented on July 21, 2024

Hmm on second thought it's not really important... (but nice to have)

from simple-obfs.

Mygod avatar Mygod commented on July 21, 2024

Wait. I just realized I accidentally configured obfs-server use tls while it should use http for 80. I did another test, it seems: (port 80)

Server mode Failover (via browser) Tunnel working
HTTP ERR_EMPTY_RESPONSE No
TLS Works No
TLS with failover disabled obfs-server: Segmentation fault No

HTTP with failover disabled: Instant Segmentation fault.

from simple-obfs.

madeye avatar madeye commented on July 21, 2024

Please try d3c9b8c.

from simple-obfs.

Mygod avatar Mygod commented on July 21, 2024

Failover is working now but the connection is only working when failover is disabled.

from simple-obfs.

Mygod avatar Mygod commented on July 21, 2024

Fully working now! Thanks.

from simple-obfs.

Mygod avatar Mygod commented on July 21, 2024

Just tried connecting behind CloudFlare. Doesn't work. (woulda been amazing if it had worked)

I connected to a wrong domain name, I get log output like:

remote_recv_cb_recv: Bad address
remote recv: Bad address

Then I realized that I need to use correct domain name, then there was no traffic.

from simple-obfs.

Mygod avatar Mygod commented on July 21, 2024

Also according to CloudFlare, WebSockets should work: https://support.cloudflare.com/hc/en-us/articles/200169466-Can-I-use-CloudFlare-with-WebSockets-

from simple-obfs.

madeye avatar madeye commented on July 21, 2024

Unfortunately, it's expected. And that's why I suggest to implement other plugins in the first comment.

from simple-obfs.

Mygod avatar Mygod commented on July 21, 2024

Hmmm okay... I will try them some day when I feel like it.

from simple-obfs.

 avatar commented on July 21, 2024

@Mygod nginx在8443端口配置好ssl 并且obfs的failover=127.0.0.1:8443
结果https://ip:8443 能正常访问 https://ip不能正常访问。请问这正常吗?
qq 20170211190117
qq 20170211190137
qq 20170211190152
qq 20170211190212

from simple-obfs.

Mygod avatar Mygod commented on July 21, 2024

@madeye I haven't tested TLS mode thoroughly so this may be a bug.

from simple-obfs.

madeye avatar madeye commented on July 21, 2024

@Mygod Yes, it's fixed via #47

from simple-obfs.

Mygod avatar Mygod commented on July 21, 2024

Okay! 😅

from simple-obfs.

aanwark avatar aanwark commented on July 21, 2024

@zeptoTantalum I am trying to run obs-server with failover to my nginx web server running on port 443. I am using the json config to configure my ss-libev-server (running on port 8530) with simple-obfs. My config looks like this:

{ "server":"xxx", "server_port":xxx, "local_port":1080, "password":"xxx", "timeout":600, "method":"chacha20-ietf-poly1305", "fast_open":true, "plugin":"obfs-server", "plugin_opts":"obfs=tls", "failover":"127.0.0.1:443" }

I would like to confirm if I am doing it right? Thanks

from simple-obfs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.