diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3994471e0db9391b99e1326a4f369c47aae0caa1..4d59395dd68cf745fc4f436ad55430e60a8469f8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -16,6 +16,8 @@ stages:
 # Copy repo content to folder that is going to be sent to eos
 copy:
   stage: copy
+  before_script:
+    - yum install -y rsync && yum clean all
   script:
     # Create a directory where to move the output generated
     - mkdir public
diff --git a/non-cgi-php/hello.php b/non-cgi-php/hello.php
new file mode 100644
index 0000000000000000000000000000000000000000..ec8d86f0084a9c9a55ca8622ae050d0197064eb3
--- /dev/null
+++ b/non-cgi-php/hello.php
@@ -0,0 +1 @@
+<?php echo "Hello, World!";?>