Skip to content

Commit

Permalink
p3x-robot sunday release 2018-3-6 15:08:48
Browse files Browse the repository at this point in the history
  • Loading branch information
p3x-robot committed Mar 6, 2018
1 parent 2796873 commit 88d1549
Show file tree
Hide file tree
Showing 7 changed files with 171 additions and 129 deletions.
25 changes: 13 additions & 12 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ chmod 777 cache
That's it, installation complete!

## Webserver configuration

Apache is the "default" webserver for GitList. You will find the configuration inside the `.htaccess` file. However, nginx and lighttpd are also supported.

### nginx server.conf
Expand All @@ -46,18 +47,20 @@ server {
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
# if you're using php5-fpm via tcp
fastcgi_pass 127.0.0.1:9000;
# if you're using php5-fpm via socket
#fastcgi_pass unix:/var/run/php5-fpm.sock;
# if you're using php7.2-fpm via socket
fastcgi_pass unix:/var/run/php7.2-fpm.sock;
include /etc/nginx/fastcgi_params;
include snippets/fastcgi-php.conf;;
}
location / {
try_files $uri @gitlist;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass $php_listener;
}
location ~ /\.ht {
deny all;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
add_header Vary "Accept-Encoding";
Expand All @@ -71,9 +74,7 @@ server {
# deny all;
# }
location @gitlist {
rewrite ^/.*$ /index.php;
}
}
```

Expand Down Expand Up @@ -106,7 +107,7 @@ UrlToolkit {

---

[**GITLIST**](https://pages.corifeus.com/gitlist) Build v1.0.2
[**GITLIST**](https://pages.corifeus.com/gitlist) Build v1.0.3

[![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software) [![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact)

Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
---


# P3X Gitlist v1.0.2
# P3X Gitlist v1.0.3

# Description

Expand All @@ -17,12 +17,17 @@ This is Klaus Silveira's fork, with multiple themes, sub-modules and updated to

### PHP > 7.1 only

[README](artifacts/php-7.2-ubuntu.md)

# Release version/update info

## Package
Done, just put on your server, nothing to build:
https://github.com/patrikx3/gitlist/releases

### v1.0.3
* Total bytes was not working with Twig 2

### v1.0.2
* Add support for .gitmodules files at repository root
* Updated to latest dependencies
Expand Down Expand Up @@ -104,7 +109,7 @@ If you have Composer in your path, things get easier. But you know the drill.

---

[**GITLIST**](https://pages.corifeus.com/gitlist) Build v1.0.2
[**GITLIST**](https://pages.corifeus.com/gitlist) Build v1.0.3

[![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software) [![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact)

Expand Down
34 changes: 34 additions & 0 deletions artifacts/php-7.2-ubuntu.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[//]: #@corifeus-header

## P3X Gitlist

---
[//]: #@corifeus-header:end
# Install PHP 7.2 on Ubuntu

```bash
sudo add-apt-repository ppa:ondrej/php
# enter (empty)

sudo apt update
sudo apt install -y php7.2
sudo apt upgrade -y
```

[//]: #@corifeus-footer

---

[**GITLIST**](https://pages.corifeus.com/gitlist) Build v1.0.3

[![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software) [![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact)


## Sponsor

[![JetBrains](https://www.patrikx3.com/images/jetbrains-logo.svg)](https://www.jetbrains.com/)



[//]: #@corifeus-footer:end
Loading

0 comments on commit 88d1549

Please sign in to comment.