You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 years ago | |
---|---|---|
.. | ||
README.rst | 3 years ago | |
tt-rss_for_NixOps.nix | 3 years ago | |
tt-rss_for_VM_testing.nix | 3 years ago | |
tt-rss_vm.nix | 3 years ago |
README.rst
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
</head>
</html>
tt-rss_vm.nix
A Nix configuration for a VM to run Tiny Tiny RSS (TT-RSS).
It is intended as an example of building a VM that builds TT-RSS for testing and evaluation purposes. I does not represent a production or secure deployment.
To use this file:
Build with:
$ nix-build '<nixpkgs/nixos>' -A vm --arg configuration ./tt-rss_vm.nix
Export these variables, adjusting to suit yourself:
$ export QEMU_OPTS="-m 4192" $ export QEMU_NET_OPTS="hostfwd=tcp::18080-:80,hostfwd=tcp::10022-:22"
Launch the VM with:
$ ./result/bin/run-tt-rss-vm
You should now be able to:
- Login via the shell
- Login via ssh:
ssh nixos@localhost -p 10022
- Login via the web: http://localhost:18080/
The default user for TT-RSS is "admin" and the default password is "password".
tt-rss_for_VM_testing.nix
This file describes the TT-RSS configuration to be deployed. As such it represents a deployment only suitable to testing purposes and should not be used as an example of a production deployment.
tt-rss_for_NixOps.nix
This provides an example of a production deployment of TT-RSS via NixOps.