My plans for RPi:
1) install Apache and learn how to use a web server
2) Install a game server (any recomendations for a low performance game to test this with?)
3) Try some no-public IP service.
4) Setup the web server in such a way to allow control of the RPi.
Any other recomendations on what should I do with this junk?
@LukeAlmighty Use nginx instead, it's 500x better and easier to use
Compare:
<VirtualHost *:80>
ServerName example.com
ServerAdmin admin@example.com
ServerAlias www.example.com
DocumentRoot /var/www/example.com/public_html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
server {
listen 80;
server_name example.com;
root /srv/http/;
location / {
try_files $uri $uri/;
}
}
@pleb @LukeAlmighty I dislike the cli/json/caddyfile spread, otherwise seems fine
@applejack @pleb @Zerglingman
I have reached a web server on RPi from my phone. Enough for today, but is is a progress.