Big pipe server
From Whitespace (Hackerspace Gent)
(Difference between revisions)
(→Remote Access) |
m |
||
| (12 intermediate revisions by 4 users not shown) | |||
| Line 5: | Line 5: | ||
|Short description=IBBT lends us a server to host the Newline videos and to run services. | |Short description=IBBT lends us a server to host the Newline videos and to run services. | ||
}} | }} | ||
| + | |||
== Remote Access == | == Remote Access == | ||
| + | |||
* ssh to members.0x20.be | * ssh to members.0x20.be | ||
* browse to http://members.0x20.be | * browse to http://members.0x20.be | ||
| − | * browse to https://members.0x20.be | + | * browse to https://members.0x20.be (CAcert) |
== Serve Files == | == Serve Files == | ||
| − | * create 'public_html' directory in your home directory. | + | |
| + | * create 'public_html' directory in your home directory. All files in there are accessible via http://members.0x20.be/yourusername/ | ||
<pre> | <pre> | ||
$ pwd | $ pwd | ||
| Line 17: | Line 20: | ||
$ mkdir public_html | $ mkdir public_html | ||
$ echo "test file" > public_html/bla.txt | $ echo "test file" > public_html/bla.txt | ||
| + | |||
| + | side note: Add the directory to /etc/skel and it will appear as soon as you create a new user | ||
| + | |||
</pre> | </pre> | ||
| − | * access via http://members.0x20.be/ | + | * access via http://members.0x20.be/username |
| + | * access via https://members.0x20.be/username (CAcert) | ||
| + | |||
| + | == Python == | ||
| + | |||
| + | Use pip and virtualenv to install packages in you separate environment. | ||
| + | |||
{{Subpages}} | {{Subpages}} | ||
| + | * [[OpenVPN]] | ||
Latest revision as of 11:46, 4 January 2012
| Big pipe server |
|---|
|
| What: |
| IBBT lends us a server to host the Newline videos and to run services. |
| Participants: |
| Abe, Jaroslov |
| Locations: |
| IBBT |
|
|
Contents |
[edit] Remote Access
- ssh to members.0x20.be
- browse to http://members.0x20.be
- browse to https://members.0x20.be (CAcert)
[edit] Serve Files
- create 'public_html' directory in your home directory. All files in there are accessible via http://members.0x20.be/yourusername/
$ pwd /home/<username> $ mkdir public_html $ echo "test file" > public_html/bla.txt side note: Add the directory to /etc/skel and it will appear as soon as you create a new user
- access via http://members.0x20.be/username
- access via https://members.0x20.be/username (CAcert)
[edit] Python
Use pip and virtualenv to install packages in you separate environment.
