¿Quieres servir un archivo estático en la raíz de tu servidor Discourse?
Esto es lo que debes hacer. En la parte inferior de tu archivo app.yml, en la sección de comandos personalizados, haz algo como esto:
## Recuerda, esta es sintaxis YAML: solo puedes tener un bloque con un nombre
run:
- exec: echo "Inicio de comandos personalizados"
- file:
path: /var/www/discourse/public/myfile.txt
chmod: "+r"
contents: |
El contenido del archivo va aquí.
- exec: echo "Fin de comandos personalizados"
Personally i find this really useful. Not to mention that this kind of static file, gives you way more opportunities to use your imagination, files, maybe other website service that you can run as static – etc
I imagine simple text strings work well enough, though I also imagine for this to be more useful, markup, links, images, etc. would be desired. I suspect that the more closely “stuff” approaches being a web page the more difficult it would be to not break.
@pfaffman what is your use case and what degree of complexity have you been able to do successfully?
Well, you’ve seen the actual examples that I know about. There are ways not to need it, but I’ve wanted to do this a few times and finally bothered to figure it out.
Very interesting and useful. Can this be tweaked to allow many files to be dumped into a folder for access? Say you want to make /var/www/discourse/public/img so that yourserver.tld/img/step_1.png can be served up easily and any number of subsequent files that are scp’d or uploaded in some way to the server?