That's already the case, see hashing in the Laravel documentation.
- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
Feed Advanced Search
Advanced Search
Advanced Search
Jun 27 2016
Jun 27 2016
dereckson moved T882: Integrate Laravel Socialite code from Backlog to Working on on the Auth Grove board.
Jun 26 2016
Jun 26 2016
dereckson closed T878: Salt Auth Grove passwords, a subtask of T271: Deploy Auth Grove to login.nasqueron.org, as Invalid.
dereckson updated the task description for T877: Validation rules hardcode 8 characters requirement for passwords.
dereckson closed T840: Upgrade to Laravel 5.2, a subtask of T878: Salt Auth Grove passwords, as Resolved.
dereckson closed T840: Upgrade to Laravel 5.2 as Resolved by committing rGROVE0e1390e52d05: Upgrade to Laravel 5.2.
dereckson added a subtask for T271: Deploy Auth Grove to login.nasqueron.org: T878: Salt Auth Grove passwords.
dereckson added a parent task for T878: Salt Auth Grove passwords: T271: Deploy Auth Grove to login.nasqueron.org.
As auth code is currently refactored to be sync'ed with Laravel 5.1 → 5.2 change, I'd suggest to avoid currently to refactor code independently.
dereckson moved T840: Upgrade to Laravel 5.2 from Backlog to In progress on the User-Dereckson board.
Jun 22 2016
Jun 22 2016
Jun 18 2016
Jun 18 2016
dereckson moved T828: Implement local storage features from New trackers to Dev on the tracker board.
Jun 17 2016
Jun 17 2016
dereckson closed T842: Fix license in Composer as Resolved by committing rGROVE12e6b6f861a9: Fix license in Composer.
A specially interesting case is T668, as we REALLY NEED to ensure the mail is the correct one.
This is especially interesting as it's passwordless and so allow to avoid any credential in the db.
Jun 2 2016
Jun 2 2016
dereckson closed T492: When using a front-end server with SSL termination, back-end serves http:// links., a subtask of T271: Deploy Auth Grove to login.nasqueron.org, as Resolved.
Jun 1 2016
Jun 1 2016
May 31 2016
May 31 2016
May 22 2016
May 22 2016
Every required field in resources/views/auth/ has already a required attribute.
1 | #!/bin/sh |
---|---|
2 | |
3 | # ------------------------------------------------------------- |
4 | # Auth Grove |
5 | # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
6 | # Author: Sébastien Santoro aka Dereckson |
7 | # Project: Nasqueron |
8 | # Created: 2016-05-21 |
9 | # Description: SSO for Nasqueron services. |
10 | # Image: nasqueron/auth-grove |
11 | # Services used: MySQL server (acquisitariat) |
12 | # Docker volume (/data/notifications/storage) |
13 | # ------------------------------------------------------------- |
14 | |
15 | # ------------------------------------------------------------- |
16 | # Container parameters |
17 | # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
18 | |
19 | INSTANCE_NAME=login |
20 | PORT=25080 |
21 | MYSQL_INSTANCE=acquisitariat |
22 | STORAGE=/data/login/storage |
23 | CANONICAL_URL=http://login.nasqueron.org |
24 | |
25 | # ------------------------------------------------------------- |
26 | # Database parameters |
27 | # |
28 | # Get credentials from zr |
29 | # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
30 | |
31 | MYSQL_HOST=mysql |
32 | MYSQL_USER=`ssh -4 -i /root/.ssh/id_zr zr@ysul.nasqueron.org getcredentials 67 username` |
33 | MYSQL_PASS=`ssh -4 -i /root/.ssh/id_zr zr@ysul.nasqueron.org getcredentials 67` |
34 | MYSQL_DB=$INSTANCE_NAME |
35 | |
36 | # ------------------------------------------------------------- |
37 | # Run the container |
38 | # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
39 | |
40 | # Checks container isn't running |
41 | docker-container-status $INSTANCE_NAME > /dev/null |
42 | if [ "$?" -lt 2 ]; then |
43 | echo "Container is already running." |
44 | echo "To force relaunch, try docker stop $INSTANCE_NAME ; docker rm $INSTANCE_NAME ; $0" |
45 | exit 1 |
46 | fi |
47 | |
48 | mkdir -p $STORAGE |
49 | chcon -Rt svirt_sandbox_file_t $STORAGE |
50 | chown 431:433 $STORAGE |
51 | docker run -t -d \ |
52 | --link $MYSQL_INSTANCE:$MYSQL_HOST \ |
53 | -p $PORT:80 \ |
54 | -e DB_HOST=$MYSQL_HOST \ |
55 | -e DB_DATABASE=$MYSQL_DB \ |
56 | -e DB_USERNAME=$MYSQL_USER \ |
57 | -e DB_PASSWORD=$MYSQL_PASS \ |
58 | -e CANONICAL_URL="$CANONICAL_URL" \ |
59 | --name $INSTANCE_NAME nasqueron/auth-grove |
60 | |
61 | echo "Deployment done at `date`." |
62 | exit 0 |
app.url setting is for CLI links
dereckson closed T839: Current URL detection code in views aren't coherent, a subtask of T271: Deploy Auth Grove to login.nasqueron.org, as Resolved.
dereckson moved T839: Current URL detection code in views aren't coherent from Backlog to Working on on the Auth Grove board.
May 21 2016
May 21 2016
dereckson closed T838: Disable gulp-notify as Resolved by committing rGROVE4612c989164f: Disable gulp-notify.
dereckson closed T838: Disable gulp-notify, a subtask of T271: Deploy Auth Grove to login.nasqueron.org, as Resolved.
dereckson added a parent task for T835: Commit storage/ folder: T271: Deploy Auth Grove to login.nasqueron.org.
dereckson added a parent task for T837: Investigate gulp issue to minimize CSS: T271: Deploy Auth Grove to login.nasqueron.org.
dereckson added a parent task for T836: Update MySQL users table in migration: T271: Deploy Auth Grove to login.nasqueron.org.
Can't repro with Node 6.
dereckson closed T830: Start user accounts ID with a large value as Resolved by committing rGROVE8de37f6f70c0: Start user accounts ID with a large value.
dereckson closed T836: Update MySQL users table in migration as Resolved by committing rGROVEce387050c995: Update database schema for users table.
dereckson added a revision to T836: Update MySQL users table in migration: D378: Update database schema for users table.
dereckson closed T835: Commit storage/ folder as Resolved by committing rGROVE9fc8e63f2143: Create storage/ hierarchy.
Dwellers
$ mysql-acquisitariat-client Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 25258597 Server version: 5.7.11 MySQL Community Server (GPL)
dereckson added a revision to T271: Deploy Auth Grove to login.nasqueron.org: D376: 502 for login.nasqueron.org.
dereckson moved T271: Deploy Auth Grove to login.nasqueron.org from Backlog to Working on on the Servers board.
dereckson moved T271: Deploy Auth Grove to login.nasqueron.org from Backlog to Working on on the Nasqueron Docker deployment squad board.
May 20 2016
May 20 2016
Apr 20 2016
Apr 20 2016
Feb 12 2016
Feb 12 2016
dereckson moved T480: CLI commands to manage accounts from New trackers to Dev on the tracker board.
Jan 22 2016
Jan 22 2016
dereckson renamed T668: E-mail authentification from email authentification to E-mail authentification.
Jan 14 2016
Jan 14 2016
dereckson renamed T336: Add login capabilities through external services from Add social login capabilities to Add login capabilities through external services.
dereckson added a subtask for T336: Add login capabilities through external services: T668: E-mail authentification.
dereckson added a parent task for T668: E-mail authentification: T336: Add login capabilities through external services.
Jul 14 2015
Jul 14 2015
Jul 13 2015
Jul 13 2015
Command is more simply account:reset.
dereckson closed T482: [CLI] Reset password command, a subtask of T468: Add account reset feature, as Resolved.
dereckson closed T482: [CLI] Reset password command as Resolved by committing rGROVEe3d721c5d7e9: New artisan command: account:reset.
dereckson closed T482: [CLI] Reset password command, a subtask of T480: CLI commands to manage accounts, as Resolved.
dereckson added a revision to T482: [CLI] Reset password command: D26: New artisan command: account:reset.
Nasqueron DevCentral · If it had been much bigger the moon would have had a core of ice. · Powered by Phabricator