Skip to content

Commit

Permalink
More testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Venefilyn committed Jun 24, 2024
1 parent 734246c commit 0e1c807
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion files/ansible/httpd.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
- name: Copy ASGI packit_dashboard.py file
copy:
src: /src/packit_dashboard/packit_dashboard.asgi
dest: /usr/share/packit_dashboard/packit_dashboard.asgi
dest: /usr/share/packit_dashboard/packit_dashboard.py
mode: 0664

- name: Copy run_httpd.sh
Expand Down
2 changes: 1 addition & 1 deletion files/scripts/run_httpd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ exec hypercorn \
--bind '[::]:8443' \
--server-name ${SERVER_NAME} \
-w 2 \
/usr/share/packit_dashboard/packit_dashboard:app
/usr/share/packit_dashboard/packit_dashboard:application
2 changes: 1 addition & 1 deletion packit_dashboard/packit_dashboard.asgi
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
import sys

sys.path.append("/src/")
from packit_dashboard.app import app
from packit_dashboard.app import app as application

0 comments on commit 0e1c807

Please sign in to comment.