This commit was merged in pull request #1.
This commit is contained in:
2025-05-16 21:42:18 +02:00
parent 8303f92ee3
commit af92eb6c18
2 changed files with 13 additions and 0 deletions

View File

@@ -29,6 +29,7 @@ RUN apt-get update && apt-get install -y \
WORKDIR /var/www/html
# Clonage du dépôt Hubzilla
RUN rm -r /var/www/html/
RUN git clone https://framagit.org/hubzilla/core.git . && \
mkdir -p store/[data]/smarty3 && \
chown -R www-data:www-data /var/www/html

12
src/hubzilla.conf Normal file
View File

@@ -0,0 +1,12 @@
<VirtualHost *:80>
ServerName yourdomain.com
DocumentRoot /var/www/html
<Directory /var/www/html>
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>