Clone the source repository.
Run rails secret to generate secret key and set SECRET_KEY_BASE
to the value later in ~/.profile.
This is simple implementation of technologies in hobby project of mine built in Rails7 where I need direct upload to S3.
| --require spec_helper |
| # User and group used by worker processes | |
| user www-data; | |
| # Ideally # of worker processes = # of CPUs or cores | |
| # Set to auto to autodetect | |
| # max_clients = worker_processes * worker_connections | |
| worker_processes auto; | |
| pid /run/nginx.pid; |
| # KILL THEM ETAGS | |
| # http://www.askapache.com/htaccess/apache-speed-etags.html | |
| FileETag none | |
| # set expires header | |
| <FilesMatch "\.(ico|jpg|jpeg|png|gif|js|css|swf|woff|eot|svg|ttf)$"> | |
| Header set Expires "Tue, 16 Jun 2020 20:00:00 GMT" | |
| </FilesMatch> | |
| # turn on gzip compression |