Created
December 2, 2019 18:26
-
-
Save mgulsoy/318171b7cb4b2f4bd1c06e39124b0657 to your computer and use it in GitHub Desktop.
Debian 9 Üzerine Nginx ve Redmine Kurulumu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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