Giter Site home page Giter Site logo

Secure web server [question] about panther HOT 5 CLOSED

symfony avatar symfony commented on May 22, 2024
Secure web server [question]

from panther.

Comments (5)

dunglas avatar dunglas commented on May 22, 2024

If you use your own web server, this code will not be called, so yes, it works (or it’s a bug)

from panther.

leevigraham avatar leevigraham commented on May 22, 2024

Can you provide a quick example of how to use your own web server?

from panther.

stof avatar stof commented on May 22, 2024

Don't use the startWebServer method of Panther (which uses the PHP builtin webserver which does not do HTTPS). Instead, configure your client to connect to a webserver managed externally (using nginx, Apache, or whatever else)

from panther.

dunglas avatar dunglas commented on May 22, 2024

We should provide a new option here https://github.com/symfony/panther/blob/master/src/PantherTestCaseTrait.php#L123 to skip starting the built-in web server.

from panther.

maidmaid avatar maidmaid commented on May 22, 2024

I found a workaround temporarily :

class TestCase extends PantherTestCase
{
    public function __construct(?string $name = null, array $data = [], string $dataName = '')
    {
        parent::__construct($name, $data, $dataName);
        if (null === self::$webServerManager) {
            self::$webServerManager = new WebServerManager('.', '127.0.0.1', 9081);
            self::$baseUri = 'http://127.0.0.1:8080'; // your web server URI
        }
    }
}

from panther.

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.