Either I’m a liar or you’re a moron. Nah, I’m just kidding. You’re okay!

A recapitulation of part of my setup, simplified and tested. The link I gave already has all this information and more. You have to have uWSGI with the PSGI extension built, as already mentioned–

> emacs /opt/app.psgi #!/usr/bin/env perl sub { [ 200, ["Content-type" => "text/plain"], ["OHAI"] ] } -- # Start the apps. > /opt/uwsgi_latest_from_installer/uwsgi --uid moo \ --pidfile /tmp/one.pid --socket 127.0.0.1:8100 \ --psgi /opt/app.psgi --processes 1 --master \ --daemonize /tmp/one.log > /opt/uwsgi_latest_from_installer/uwsgi --uid moo \ --pidfile /tmp/two.pid --socket 127.0.0.1:8200 \ --psgi /opt/app.psgi --processes 1 --master \ --daemonize /tmp/two.log -- # Edit the nginx config by adding the endpoints. > emacs /etc/nginx/sites-enabled/your-site-config.conf -- location /one { include uwsgi_params; uwsgi_pass 127.0.0.1:8100; uwsgi_modifier1 5; } location /two { include uwsgi_params; uwsgi_pass 127.0.0.1:8200; uwsgi_modifier1 5; } # Restart nginx and visit # http://yourdomain/one # http://yourdomain/two

In reply to Re^3: Most efficient way to run Perl scripts on nginx server? by Your Mother
in thread Most efficient way to run Perl scripts on nginx server? by ultranerds

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.