File tree 7 files changed +32
-0
lines changed
7 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ echo " Content-Type: text/html"
4
+ echo
5
+
6
+ echo " <p>query $QUERY_STRING </p>"
7
+
8
+ cat /dev/stdin
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ echo " Content-Type: text/plain\n\n"
4
+
5
+ echo " Hello, world"
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env python3
2
+
3
+ from configparser import ConfigParser
4
+ cfg = ConfigParser ()
5
+ cfg .read ("test.ini" )
6
+
7
+ print (cfg .sections ())
Original file line number Diff line number Diff line change
1
+ [GET:/api/:name/hello]
2
+ filename = demo.php
3
+ handler = nix-shell
Original file line number Diff line number Diff line change
1
+ [uwsgi]
2
+ module = info:application
3
+
4
+ master = true
5
+ processes = 5
6
+ http = :8080
7
+ vacuum = true
8
+
9
+ die-on-term = true
You can’t perform that action at this time.
0 commit comments