Skip to content

Instantly share code, notes, and snippets.

@mgulsoy
Created December 2, 2019 18:26
Show Gist options
  • Save mgulsoy/318171b7cb4b2f4bd1c06e39124b0657 to your computer and use it in GitHub Desktop.
Save mgulsoy/318171b7cb4b2f4bd1c06e39124b0657 to your computer and use it in GitHub Desktop.
Debian 9 Üzerine Nginx ve Redmine Kurulumu
server {
listen 80;
listen [::]:80;
server_name redmine.bizimsiteadresi.com;
access_log /var/log/nginx/redmine.bizimsiteadresi.com.access.log;
root /usr/share/redmine/public;
passenger_enabled on;
passenger_user www-data;
error_page 404 /404.html;
error_page 500 /500.html;
client_max_body_size 10m;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment