Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Fiat Tux
Hat softwares
Dolomon
Commits
93c2ac8a
Commit
93c2ac8a
authored
Jan 15, 2018
by
Luc Didry
Browse files
Add INSTALL file, update CONTRIBUTING and add a Nginx template
parent
42378ed6
Changes
3
Hide whitespace changes
Inline
Side-by-side
CONTRIBUTING.md
View file @
93c2ac8a
# Contributing
Please post issues on
<https://framagit.org/luc/dolomon/issues>
.
If you want to add a language to dolomon, edit
`Makefile`
(take exemple on EN and FR) and do
`make locales`
.
It will create a .po file for your language, waiting for your translation, modify it then commit it and create a merge request.
Please, go to the
[
wiki
](
https://framagit.org/luc/dolomon/wikis/contributing
)
INSTALL.md
0 → 100644
View file @
93c2ac8a
# Installation
Please, go to the
[
wiki
](
https://framagit.org/luc/dolomon/wikis/installation
)
utilities/dolomon.nginx.conf
0 → 100644
View file @
93c2ac8a
server
{
listen
80
;
listen
[::]:
80
;
server_name
dolomon
.
exemple
.
org
;
access_log
/
var
/
log
/
nginx
/
dolomon
.
exemple
.
access
.
log
;
error_log
/
var
/
log
/
nginx
/
dolomon
.
exemple
.
error
.
log
;
location
/ {
proxy_http_version
1
.
1
;
include
proxy_params
;
proxy_pass
http
://
127
.
0
.
0
.
1
:
3000
;
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment